0
0
Fork 0
mirror of https://github.com/Screetsec/TheFatRat.git synced 2023-12-14 02:02:58 +01:00

Allignment with Master

This commit is contained in:
root 2017-03-28 07:00:08 -04:00
parent 3695f25a08
commit 28c753b0c1
3 changed files with 38 additions and 7 deletions

View file

@ -10,7 +10,7 @@
An easy tool to generate backdoor and easy tool to post exploitation attack like browser attack,dll . This tool compiles a malware with popular payload and then the compiled malware can be execute on windows, android, mac . The malware that created with this tool also have an ability to bypass most AV software protection .
# Screenshot
<img src="https://cloud.githubusercontent.com/assets/17976841/23983691/1c61b230-0a48-11e7-9742-0d47c5527456.png" width="55%"></img>
<img src="https://cloud.githubusercontent.com/assets/17976841/24345475/9065b3ec-12fa-11e7-80f8-2fb2172781c7.png" width="55%"></img>
# ---------------------------------------------------------------
<img src="https://cloud.githubusercontent.com/assets/17976841/18483870/39cb46ba-7a10-11e6-859b-1c1baa3c1b0a.png" width="32%"></img> <img src="https://cloud.githubusercontent.com/assets/17976841/18483871/39cb81ca-7a10-11e6-84f3-1683067fa4f5.png" width="32%"></img> <img src="https://cloud.githubusercontent.com/assets/17976841/18483873/39d54372-7a10-11e6-890f-41803a33b9c9.png" width="32%"></img>

18
fatrat
View file

@ -617,7 +617,8 @@ echo ""
echo -e $okegreen" [13] rar >> bacdoor.rar "$yellow"( Winrar old version)"
echo -e $okegreen" [14] Back to Menu "
echo -e " "
echo -n -e $red' \033[4mCreator@fatrat:\033[0m>> '; tput sgr0 #insert your choice
echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"creator$okegreen]:"
echo -ne $okegreen" └─────► " ;tput sgr0
read fatrat1
if test $fatrat1 == '1'
then
@ -944,7 +945,8 @@ echo -e $okegreen" ============================================================
echo -e " [5] Load a saved Listener"
echo -e " [6] Back to Menu "
echo -e " "
echo -n -e $red' \033[4mListeners@fatrat:\033[0m>> '; tput sgr0 #insert your choice
echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"listener$okegreen]:"
echo -ne $okegreen" └─────► " ;tput sgr0
read fatrat1
if test $fatrat1 == '1' #LINUX
@ -1137,7 +1139,8 @@ CODENAME='Mario Bros'
# Seems to fix some metasploit bugs
rm -rf ~/.msf4/local/* >/dev/null 2>&1
echo -n -e $red' \033[4mMicrosploit@fatrat:\033[0m>> '; tput sgr0
echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"microsploit$okegreen]:"
echo -ne $okegreen" └─────► " ;tput sgr0
read choice
case $choice in
1)
@ -1873,7 +1876,8 @@ echo -e $red" Powershell$cyan Injection attacks on any$red Windows Platfo
echo -e $yellow" [7] $okegreen Create Backdoor with C / Metasploit Staging Protocol (FUD 98%)"
echo -e $yellow" [8] $okegreen Back to Menu "
echo -e $yellow" "
echo -n -e $red' \033[4mPwnWind@fatrat:\033[0m>> '; tput sgr0 #insert your choice
echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"pwnwind$okegreen]:"
echo -ne $okegreen" └─────► " ;tput sgr0
read fatrat1
if test $fatrat1 == '1' #NUMBER 1 BEBE
@ -2811,7 +2815,8 @@ menu () {
echo -e $white" [$okegreen"14"$white]$okegreen Credits "
echo -e $white" [$okegreen"15"$white]$okegreen Exit "
echo -e " "
echo -n -e $red' \033[4mScreetsec@Fatrat:\033[0m '; tput sgr0 #insert your choice
echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"menu$okegreen]:"
echo -ne $okegreen" └─────► " ;tput sgr0
read fatrat
if test $fatrat == '1'
@ -3024,7 +3029,8 @@ echo
echo -e $white" [$okegreen"14"$white]$okegreen Credits "
echo -e $white" [$okegreen"15"$white]$okegreen Exit "
echo -e " "
echo -n -e $red' \033[4mScreetsec@Fatrat:\033[0m '; tput sgr0 #insert your choice
echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"menu$okegreen]:"
echo -ne $okegreen" └─────► " ;tput sgr0
read fatrat
if test $fatrat == '1'

25
tools/pump.py Normal file
View file

@ -0,0 +1,25 @@
import sys
#python fpump.py [file] [size] [-mb/-kb]
if len(sys.argv) < 4:
sys.exit('[-] Missing argument!\n[+] Usage: python pumper.py [file] [size] [-mb/-kb]')
fp = sys.argv[1]
size = int(sys.argv[2])
tp = sys.argv[3]
f = open(fp, 'ab')
if tp == '-kb':
b_size = size * 1024
elif tp == '-mb':
b_size = size * 1048576
else:
sys.exit('[-] Use -mb or -kb!')
bufferSize = 256
for i in range(b_size/bufferSize):
f.write(str('0' * bufferSize))
f.close()
print '[+] Finished pumping', fp, 'with', size, tp