Skip to content
/ myOSWE Public

Scripts, files, cheatsheets and more used for pentestign and my OSWE exam.

License

Notifications You must be signed in to change notification settings

Lawlez/myOSWE

Repository files navigation

Offensive Security


About

My collection of useful resources, tools and solutions used for Pentesting or security assessments.

  • htb: contains files and writeups for various hackthebox challenges and machines. Usually the solution is not included ;)
  • lists: contains various Fuzzing lists used for pentesting
  • misc: miscallenous files that dont fit anywhere else, f.e. Report template
  • pdf: Various PDF files, Cheatsheets, writeups and other pdfs worht to look at
  • scripts: contains helpful scripts mostly used for pentesting but also some other stuff, also contains CVE PoC's and duckyscripts

Originally in this repository I documented my jorney to becoming an Offensive Security Web Expert (OSWE). Currently im using this repository as a one stop shop for all my IT & Security needs.



Tools


Cheatsheets and misc

cURL cheatsheet

Command Description
curl http://lwlx.xyz GET request with cURL
curl http://lwlx.xyz -v Verbose GET request with cURL
curl http://admin:[email protected]/ -vvv cURL Basic Auth login
curl -u admin:password http://lwlx.xyz/ -vvv Alternate cURL Basic Auth login
curl -u admin:password -L http://lwlx.xyz/ cURL Basic Auth login, follow redirection
curl -u admin:password 'http://lwlx.xyz/search.php?port_code=us' cURL GET request with parameter
curl -d 'username=user&password=pass' -L http://lwlx.xyz/login.php POST request with cURL
curl -d 'username=user&password=pass' -L http://lwlx.xyz/login.php -v Debugging with cURL
curl -d 'username=user&password=pass' -L --cookie-jar /dev/null http://lwlx.xyz/login.php -v Cookie usage with cURL
curl -d 'username=user&password=pass' -L --cookie-jar cookies.txt http://lwlx.xyz/login.php cURL with cookie file
curl -H 'Content-Type: application/json' -d '{ "username" : "user", "password" : "pass" }' cURL specify content type
curl -X OPTIONS http://lwlx.xyz/ -vv cURL OPTIONS request
curl -X PUT -d @test.txt http://lwlx.xyz/test.txt -vv File upload with cURL
curl -X DELETE http://lwlx.xyz/test.txt -vv DELETE method with cURL

shell script brackets cheatsheet

shell script brackets