Skip to content

Instantly share code, notes, and snippets.

View xdgwavesx's full-sized avatar

Vishesh Gupta xdgwavesx

  • Ambala
View GitHub Profile
@xdgwavesx
xdgwavesx / curl.md
Created December 4, 2019 08:17 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.

@xdgwavesx
xdgwavesx / wget.md
Created December 5, 2019 05:04 — forked from protrolium/wget.md
wget commands

Download Only Certain File Types Using wget -r -A

You can use this under following situations:

  • Download all images from a website
  • Download all videos from a website
  • Download all PDF files from a website

$ wget -r -A.pdf http://url-to-webpage-with-pdfs/

@xdgwavesx
xdgwavesx / Buffer Overflow Tutorial in Kali.md
Created December 5, 2019 06:50 — forked from apolloclark/Buffer Overflow Tutorial in Kali.md
Buffer overflow demonstration in Kali Linux, based on the Computerphile video
@xdgwavesx
xdgwavesx / basics.html
Last active February 4, 2020 11:57
Basic System Management Tasks in Linux
LINUX BASICS
> alias
Defining an alternative name for the command with options or arguments
+ aliases always takes precedence over external and internal commands.
+ alias ls='ls -l --color=auto'
----