metalx1000

BASH Shell Scraping Login Form

Jan 15th, 2025 (edited)
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.90 KB | None | 0 0
  1. wget -O- "https://filmsbykris.com/scripts/2024/webscraping/login/"
  2. wget -O- "https://neo:[email protected]/scripts/2024/webscraping/login/"
  3. wget -O- --user neo --password password "https://filmsbykris.com/scripts/2024/webscraping/login/"
  4. wget -qO- --user neo --password password "https://filmsbykris.com/scripts/2024/webscraping/login/"
  5. wget -qO- --user neo --password password "https://filmsbykris.com/scripts/2024/webscraping/login/"|grep -i git
  6. wget -qO- --user neo --password password "https://filmsbykris.com/scripts/2024/webscraping/login/"|grep -i git|cut -d\" -f2
  7.  
  8. curl -s -u neo:password "https://filmsbykris.com/scripts/2024/webscraping/login/"
  9. curl -s -u neo:password "https://filmsbykris.com/scripts/2024/webscraping/login/"|grep -i git|cut -d\" -f2
  10.  
  11. echo -ne "neo:password"|base64 -w0
  12. curl "https://filmsbykris.com/scripts/2024/webscraping/login/" \
  13. -H 'Authorization: Basic bmVvOnBhc3N3b3Jk'
Add Comment
Please, Sign In to add comment