Skip to content

Latest commit

 

History

History

0x10-python-network_0

python-network

Technologies

  • Files written in vi, vim, and emacs editors.
  • Files tested on Ubuntu 20.04
  • Python3.4 files

Files

Files Question
0-body_size.sh Write a Bash script that takes in a URL, sends a request to that URL, and displays the size of the body of the response.
1-body.sh Write a Bash script that takes in a URL, sends a GET request to the URL, and displays the body of the response.
2-delete.sh Write a Bash script that sends a DELETE request to the URL passed as the first argument and displays the body of the response.
3-methods.sh Write a Bash script that takes in a URL and displays all HTTP methods the server will accept.
4-header.sh Write a Bash script that takes in a URL as an argument, sends a GET request to the URL, and displays the body of the response.
5-post_params.sh Write a Bash script that takes in a URL, sends a POST request to the passed URL, and displays the body of the response.
6-peak.py Write a function that finds a peak in a list of unsorted integers.
6-peak.txt Time complexity of 6-peak.py
100-status_code.sh Write a Bash script that sends a request to a URL passed as an argument, and displays only the status code of the response.
101-post_json.sh Write a Bash script that sends a JSON POST request to a URL passed as the first argument, and displays the body of the response.
102-catch_me.sh Write a Bash script that makes a request to 0.0.0.0:5000/catch_me that causes the server to respond with a message containing You got me!, in the body of the response.