hacktricks/network-services-pentesting/8333-18333-38333-18444-pentesting-bitcoin.md

74 lines
3.7 KiB
Markdown
Raw Normal View History

2022-12-03 17:35:56 +00:00
# 8333,18333,38333,18444 - Pentesting Bitcoin
2022-04-28 16:01:33 +00:00
{% hint style="success" %}
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
2022-04-28 16:01:33 +00:00
<details>
<summary>Support HackTricks</summary>
2022-04-28 16:01:33 +00:00
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
2022-04-28 16:01:33 +00:00
</details>
{% endhint %}
2022-04-28 16:01:33 +00:00
## Basic Information
2022-04-08 22:36:18 +00:00
* Die **poort 8333** word deur Bitcoin nodes in die **mainnet** gebruik om tussen hulle te kommunikeer.
* Die **poort 18333** word deur Bitcoin nodes in die **testnet** gebruik om tussen hulle te kommunikeer.
* Die **poort 38333** word deur Bitcoin nodes in die **signet** gebruik om tussen hulle te kommunikeer.
* Die **poort 18444** word deur Bitcoin nodes in die **regtest** (lokale) gebruik om tussen hulle te kommunikeer.
2022-04-08 22:36:18 +00:00
**Default port:** 8333, 18333, 38333, 18444
2022-04-08 22:36:18 +00:00
```
PORT STATE SERVICE
8333/tcp open bitcoin
```
2022-12-03 17:35:56 +00:00
### Shodan
2022-04-08 22:36:18 +00:00
* `port:8333 bitcoin`
* `User-Agent: /Satoshi`
## Enumerasie
2022-04-08 22:36:18 +00:00
Bitcoin nodes sal vir jou 'n paar inligting gee as hulle dink jy is 'n ander geldige bitcoin node. **Nmap** het 'n skrip om hierdie inligting te onttrek:
2022-04-08 22:36:18 +00:00
```
sudo nmap -p 8333 --script bitcoin-info --script bitcoin-getaddr 170.39.103.39
PORT STATE SERVICE
8333/tcp open bitcoin
2024-02-11 02:07:06 +00:00
| bitcoin-info:
2022-04-08 22:36:18 +00:00
| Timestamp: 2022-04-08T22:33:58
| Network: main
| Version: 0.7.0
| Node Id: 1bea074ea4f6eca3
| Lastblock: 731027
|_ User Agent: /Satoshi:0.19.1/
sudo nmap -p 8333 --script bitcoin-getaddr 170.39.103.39
PORT STATE SERVICE
8333/tcp open bitcoin
2024-02-11 02:07:06 +00:00
| bitcoin-getaddr:
2022-04-08 22:36:18 +00:00
| ip timestamp
| 2a02:c7e:486a:2b00:3d26:db39:537f:59f2:8333 2022-03-25T07:30:45
| 2600:1f1c:2d3:2403:7b7d:c11c:ca61:f6e2:8333 2022-04-08T07:16:38
| 75.128.4.27:8333 2022-04-02T08:10:45
[...]
```
{% hint style="success" %}
Leer & oefen AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Opleiding AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
Leer & oefen GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Opleiding GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
2022-04-28 16:01:33 +00:00
<details>
<summary>Ondersteun HackTricks</summary>
2022-04-28 16:01:33 +00:00
* Kyk na die [**subskripsieplanne**](https://github.com/sponsors/carlospolop)!
* **Sluit aan by die** 💬 [**Discord-groep**](https://discord.gg/hRep4RUj7f) of die [**telegram-groep**](https://t.me/peass) of **volg** ons op **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
* **Deel hacking truuks deur PRs in te dien na die** [**HackTricks**](https://github.com/carlospolop/hacktricks) en [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
2022-04-28 16:01:33 +00:00
</details>
{% endhint %}