How Blind SQL Injection Works
https://medium.com/@pentesterclubpvtltd/how-blind-sql-injection-works-1126e82f2494?source=rss------bug_bounty-5
Blind SQL injection is a type of SQL injection attack where the attacker indirectly discovers information by analyzing server reactions to…Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/how-blind-sql-injection-works-1126e82f2494?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@pentesterclubpvtltd/how-blind-sql-injection-works-1126e82f2494?source=rss------bug_bounty-5
Blind SQL injection is a type of SQL injection attack where the attacker indirectly discovers information by analyzing server reactions to…Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/how-blind-sql-injection-works-1126e82f2494?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
How Blind SQL Injection Works
Blind SQL injection is a type of SQL injection attack where the attacker indirectly discovers information by analyzing server reactions to…
Double Blind Sql Injection
https://medium.com/@pentesterclubpvtltd/double-blind-sql-injection-89c3cffb59e7?source=rss------bug_bounty-5
SQL Injection vulnerabilities are often detected by analyzing error messages received from the database, but sometimes we cannot exploit…Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/double-blind-sql-injection-89c3cffb59e7?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@pentesterclubpvtltd/double-blind-sql-injection-89c3cffb59e7?source=rss------bug_bounty-5
SQL Injection vulnerabilities are often detected by analyzing error messages received from the database, but sometimes we cannot exploit…Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/double-blind-sql-injection-89c3cffb59e7?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
Double Blind Sql Injection
SQL Injection vulnerabilities are often detected by analyzing error messages received from the database, but sometimes we cannot exploit…
Error Based Sql Injection
https://medium.com/@pentesterclubpvtltd/error-based-sql-injection-185acaf43666?source=rss------bug_bounty-5
What Is Error-Based SQL Injection?Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/error-based-sql-injection-185acaf43666?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@pentesterclubpvtltd/error-based-sql-injection-185acaf43666?source=rss------bug_bounty-5
What Is Error-Based SQL Injection?Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/error-based-sql-injection-185acaf43666?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
Error Based Sql Injection
What Is Error-Based SQL Injection?
How Blind SQL Injection Works
Blind SQL injection is a type of SQL injection attack where the attacker indirectly discovers information by analyzing server reactions to…Continue reading on Medium »
Read more...
Blind SQL injection is a type of SQL injection attack where the attacker indirectly discovers information by analyzing server reactions to…Continue reading on Medium »
Read more...
Double Blind Sql Injection
SQL Injection vulnerabilities are often detected by analyzing error messages received from the database, but sometimes we cannot exploit…Continue reading on Medium »
Read more...
SQL Injection vulnerabilities are often detected by analyzing error messages received from the database, but sometimes we cannot exploit…Continue reading on Medium »
Read more...
Automated Tools Sql NINJA
sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking…Continue reading on Medium »
Read more...
sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking…Continue reading on Medium »
Read more...
Peetch - An eBPF Playground
http://www.kitploit.com/2022/08/peetch-ebpf-playground.html
___________________________
@hacking_Attack
@Hacking_Video
http://www.kitploit.com/2022/08/peetch-ebpf-playground.html
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Peetch - An eBPF Playground
peetch is a collection of tools aimed at experimenting with different aspects of eBPF to bypass TLS protocol protections. Currently, peetch includes two subcommands. The first called dump aims to sniff network traffic by associating information about the source process with each packet. The second called tls allows to identify processes using OpenSSL (https://www.kitploit.com/search/label/OpenSSL) to extract cryptographic keys. Combined, these two commands make it possible to decrypt TLS exchanges recorded in the PCAPng format.
Installation peetch relies on several dependencies including non-merged modifications of bcc (https://github.com/iovisor/bcc) and Scapy (https://github.com/secdev/scapy). A Docker image can be easily built in order to easily test peetch using the following command: docker build -t quarkslab/peetch .
Commands Walk Through The following examples assume that you used the following command to enter the Docker image and launch examples within it: docker run --privileged --network host --mount type=bind,source=/sys,target=/sys --mount type=bind,source=/proc,target=/proc --rm -it quarkslab/peetch
dump This sub-command gives you the ability to sniff packets (https://www.kitploit.com/search/label/Packets) using an eBPF TC classifier and to retrieve the corresponding PID and process names with: peetch dump
curl/1289291 - Ether / IP / TCP 10.211.55.10:53052 > 208.97.177.124:https S / Padding
curl/1289291 - Ether / IP / TCP 208.97.177.124:https > 10.211.55.10:53052 SA / Padding
curl/1289291 - Ether / IP / TCP 10.211.55.10:53052 > 208.97.177.124:https A / Padding
curl/1289291 - Ether / IP / TCP 10.211.55.10:53052 > 208.97.177.124:https PA / Raw / Padding
curl/1289291 - Ether / IP / TCP 208.97.177.124:https > 10.211.55.10:53052 A / Padding
Note that for demonstration purposes, dump will only capture (https://www.kitploit.com/search/label/Capture) IPv4 based TCP segments. For convenience, the captured packets can be store to PCAPng along with process information using --write: peetch dump --write peetch.pcapng
^C
This PCAPng can easily be manipulated with Wireshark (https://www.kitploit.com/search/label/Wireshark) or Scapy: scapy
>>> l = rdpcap("peetch.pcapng")
>>> l[0]
>>>
>>> l[0].comment
b'curl/1289909'
tls This sub-command aims at identifying process that uses OpenSSl and makes it is to dump several things like plaintext and secrets. By default, peetch tls will only display one line per process, the --directions argument makes it possible to display the exchanges messages: peetch tls --directions
<- curl (1291078) 208.97.177.124/443 TLS1.2 ECDHE-RSA-AES128-GCM-SHA256
> curl (1291078) 208.97.177.124/443 TLS1.-1 ECDHE-RSA-AES128-GCM-SHA256
Displaying OpenSSL buffer content is achieved with --content. peetch tls --content
<- curl (1290608) 208.97.177.124/443 TLS1.2 ECDHE-RSA-AES128-GCM-SHA256
0000 47 45 54 20 2F 20 48 54 54 50 2F 31 2E 31 0D 0A GET / HTTP/1.1..
0010 48 6F 73 74 3A 20 77 77 77 2E 70 65 72 64 75 2E Host: www.perdu.
0020 63 6F 6D 0D 0A 55 73 65 72 2D 41 67 65 6E 74 3A com..User-Agent:
0030 20 63 75 72 6C 2F 37 2E 36 38 2E 30 0D 0A 41 63 curl/7.68.0..Ac
-> curl (1290608) 208.97.177.124/443 TLS1.-1 ECDHE-RSA-AES128-GCM-SHA256
0000 48 54 54 50 2F 31 2E 31 20 32 30 30 20 4F 4B 0D HTTP/1.1 200 OK.
0010 0A 44 61 74 65 3A 20 54 68 75 2C 20 31 39 20 4D .Date: Thu, 19 M
0020 61 79 20 32 30 32 32 20 31 38 3A 31 36 3A 30 31 ay 2022 18:16:01
0030 20 47 4D 54 0D 0A 53 65 72 76 65 72 3A 20 41 70 GMT..Server: Ap
The --secrets arguments will display TLS Master Secrets extracted from memory. The following example leverages --write to write master secrets to discuss to simplify (https://www.kitploit.com/search/label/Simplify) decruypting TLS messages with Scapy: $ (sleep 5; curl https://www.perdu.com/?name=highly%20secret%20information --tls-max 1.2 -http1.1) &
# peetch tls --write &
___________________________
@hacking_Attack
@Hacking_Video
Installation peetch relies on several dependencies including non-merged modifications of bcc (https://github.com/iovisor/bcc) and Scapy (https://github.com/secdev/scapy). A Docker image can be easily built in order to easily test peetch using the following command: docker build -t quarkslab/peetch .
Commands Walk Through The following examples assume that you used the following command to enter the Docker image and launch examples within it: docker run --privileged --network host --mount type=bind,source=/sys,target=/sys --mount type=bind,source=/proc,target=/proc --rm -it quarkslab/peetch
dump This sub-command gives you the ability to sniff packets (https://www.kitploit.com/search/label/Packets) using an eBPF TC classifier and to retrieve the corresponding PID and process names with: peetch dump
curl/1289291 - Ether / IP / TCP 10.211.55.10:53052 > 208.97.177.124:https S / Padding
curl/1289291 - Ether / IP / TCP 208.97.177.124:https > 10.211.55.10:53052 SA / Padding
curl/1289291 - Ether / IP / TCP 10.211.55.10:53052 > 208.97.177.124:https A / Padding
curl/1289291 - Ether / IP / TCP 10.211.55.10:53052 > 208.97.177.124:https PA / Raw / Padding
curl/1289291 - Ether / IP / TCP 208.97.177.124:https > 10.211.55.10:53052 A / Padding
Note that for demonstration purposes, dump will only capture (https://www.kitploit.com/search/label/Capture) IPv4 based TCP segments. For convenience, the captured packets can be store to PCAPng along with process information using --write: peetch dump --write peetch.pcapng
^C
This PCAPng can easily be manipulated with Wireshark (https://www.kitploit.com/search/label/Wireshark) or Scapy: scapy
>>> l = rdpcap("peetch.pcapng")
>>> l[0]
>>>
>>> l[0].comment
b'curl/1289909'
tls This sub-command aims at identifying process that uses OpenSSl and makes it is to dump several things like plaintext and secrets. By default, peetch tls will only display one line per process, the --directions argument makes it possible to display the exchanges messages: peetch tls --directions
<- curl (1291078) 208.97.177.124/443 TLS1.2 ECDHE-RSA-AES128-GCM-SHA256
> curl (1291078) 208.97.177.124/443 TLS1.-1 ECDHE-RSA-AES128-GCM-SHA256
Displaying OpenSSL buffer content is achieved with --content. peetch tls --content
<- curl (1290608) 208.97.177.124/443 TLS1.2 ECDHE-RSA-AES128-GCM-SHA256
0000 47 45 54 20 2F 20 48 54 54 50 2F 31 2E 31 0D 0A GET / HTTP/1.1..
0010 48 6F 73 74 3A 20 77 77 77 2E 70 65 72 64 75 2E Host: www.perdu.
0020 63 6F 6D 0D 0A 55 73 65 72 2D 41 67 65 6E 74 3A com..User-Agent:
0030 20 63 75 72 6C 2F 37 2E 36 38 2E 30 0D 0A 41 63 curl/7.68.0..Ac
-> curl (1290608) 208.97.177.124/443 TLS1.-1 ECDHE-RSA-AES128-GCM-SHA256
0000 48 54 54 50 2F 31 2E 31 20 32 30 30 20 4F 4B 0D HTTP/1.1 200 OK.
0010 0A 44 61 74 65 3A 20 54 68 75 2C 20 31 39 20 4D .Date: Thu, 19 M
0020 61 79 20 32 30 32 32 20 31 38 3A 31 36 3A 30 31 ay 2022 18:16:01
0030 20 47 4D 54 0D 0A 53 65 72 76 65 72 3A 20 41 70 GMT..Server: Ap
The --secrets arguments will display TLS Master Secrets extracted from memory. The following example leverages --write to write master secrets to discuss to simplify (https://www.kitploit.com/search/label/Simplify) decruypting TLS messages with Scapy: $ (sleep 5; curl https://www.perdu.com/?name=highly%20secret%20information --tls-max 1.2 -http1.1) &
# peetch tls --write &
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
Leading source of security tools, hacking tools, cybersecurity and network security. Learn about new tools and updates in one place.
curl (1293232) 208.97.177.124/443 TLS1.2 ECDHE-RSA-AES128-GCM-SHA256
# peetch dump --write traffic.pcapng
^C
# Add the master secret to a PCAPng file
$ editcap --inject-secrets tls,1293232-master_secret.log traffic.pcapng traffic-ms.pcapng
$ scapy
>>> load_layer("tls")
>>> conf.tls_session_enable = True
>>> l = rdpcap("traffic-ms.pcapng")
>>> l[13][TLS].msg
[]
Limitations By design, peetch only supports OpenSSL and TLS 1.2.
Download Peetch (https://github.com/quarkslab/peetch)
___________________________
@hacking_Attack
@Hacking_Video
# peetch dump --write traffic.pcapng
^C
# Add the master secret to a PCAPng file
$ editcap --inject-secrets tls,1293232-master_secret.log traffic.pcapng traffic-ms.pcapng
$ scapy
>>> load_layer("tls")
>>> conf.tls_session_enable = True
>>> l = rdpcap("traffic-ms.pcapng")
>>> l[13][TLS].msg
[]
Limitations By design, peetch only supports OpenSSL and TLS 1.2.
Download Peetch (https://github.com/quarkslab/peetch)
___________________________
@hacking_Attack
@Hacking_Video
GitHub
GitHub - quarkslab/peetch: An eBPF playground
An eBPF playground. Contribute to quarkslab/peetch development by creating an account on GitHub.
hacking: security in practice
What causes MacBook firmware to lock?
I put a pin in and my MacBook went into firmware lock.
submitted by /u/Typical_Rabbit_
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
What causes MacBook firmware to lock?
I put a pin in and my MacBook went into firmware lock.
submitted by /u/Typical_Rabbit_
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
What causes MacBook firmware to lock?
I put a pin in and my MacBook went into firmware lock.
Automated Tools Sql NINJA
https://medium.com/@pentesterclubpvtltd/automated-tools-sql-ninja-5aaddac63ea7?source=rss------bug_bounty-5
sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking…Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/automated-tools-sql-ninja-5aaddac63ea7?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@pentesterclubpvtltd/automated-tools-sql-ninja-5aaddac63ea7?source=rss------bug_bounty-5
sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking…Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/automated-tools-sql-ninja-5aaddac63ea7?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
Automated Tools Sql NINJA
sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking…
Bypassing Blacklists CTF In Kali Linux
https://medium.com/@pentesterclubpvtltd/bypassing-blacklists-ctf-in-kali-linux-58fb3df27b9e?source=rss------bug_bounty-5
Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/bypassing-blacklists-ctf-in-kali-linux-58fb3df27b9e?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@pentesterclubpvtltd/bypassing-blacklists-ctf-in-kali-linux-58fb3df27b9e?source=rss------bug_bounty-5
Continue reading on Medium » (https://medium.com/@pentesterclubpvtltd/bypassing-blacklists-ctf-in-kali-linux-58fb3df27b9e?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
Medium
Bypassing Blacklists CTF In Kali Linux
Web Security Academy — OS command injection, simple case
This challenge is from the Web Security Academy by Portswigger. It is under the category “OS command injection”. After starting the lab…Continue reading on Medium »
Read more...
This challenge is from the Web Security Academy by Portswigger. It is under the category “OS command injection”. After starting the lab…Continue reading on Medium »
Read more...
Web Security Academy — OS command injection, simple case
https://r4bb1t.medium.com/web-security-academy-os-command-injection-simple-case-d616708a309c?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://r4bb1t.medium.com/web-security-academy-os-command-injection-simple-case-d616708a309c?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
Web Security Academy — OS command injection, simple case
This challenge is from the Web Security Academy by Portswigger. It is under the category “OS command injection”. After starting the lab…
This challenge is from the Web Security Academy by Portswigger. It is under the category “OS command injection”. After starting the lab…Continue reading on Medium » (https://r4bb1t.medium.com/web-security-academy-os-command-injection-simple-case-d616708a309c?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
Web Security Academy — OS command injection, simple case
This challenge is from the Web Security Academy by Portswigger. It is under the category “OS command injection”. After starting the lab…