Advertisement
Sweetening

Windows Local File Inclusion To Remote File Inclusion poc

Apr 25th, 2024 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. root@ClanVv3 MINGW64 ~
  2. $ python -m http.server 8080
  3. Serving HTTP on :: port 8080 (http://[::]:8080/) ...
  4.  
  5. Keyboard interrupt received, exiting.
  6.  
  7.  
  8. root@ClanVv3 MINGW64 ~
  9. $ python -m http.server localhost:8080 && nohup python -m http.server 8080 &
  10. [1] 1486
  11.  
  12. root@ClanVv3 MINGW64 ~
  13. $ usage: server.py [-h] [--cgi] [-b ADDRESS] [-d DIRECTORY] [-p VERSION] [port]
  14. server.py: error: argument port: invalid int value: 'localhost:8080'
  15. python -m http.server 8080 && nohup python -m http.server 8080 &
  16. [2] 1491
  17. [1] Exit 2 python -m http.server localhost:8080 && nohup python -m http.server 8080
  18.  
  19. root@ClanVv3 MINGW64 ~
  20. $ Serving HTTP on :: port 8080 (http://[::]:8080/) ...
  21. ::1 - - [25/Apr/2024 11:41:49] "GET / HTTP/1.1" 200 -
  22. ::1 - - [25/Apr/2024 11:41:49] code 404, message File not found
  23. ::1 - - [25/Apr/2024 11:41:49] "GET /favicon.ico HTTP/1.1" 404 -
  24. ::1 - - [25/Apr/2024 11:42:30] "GET /load.sh HTTP/1.1" 200 -
  25. ::1 - - [25/Apr/2024 11:42:36] "GET /kek.py HTTP/1.1" 200 -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement