Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bsysop/IpLogger
https://github.com/bsysop/IpLogger
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bsysop/IpLogger
- Owner: bsysop
- License: apache-2.0
- Created: 2022-12-27T21:42:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-27T22:28:18.000Z (almost 2 years ago)
- Last Synced: 2024-08-05T17:43:43.239Z (4 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 14
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - bsysop/IpLogger - (Python)
README
# Burp Extension - IpLogger
**IpLogger** is a basic Burp Extension that will make a request to `https://api.ipify.org` every time Burp is opened and will store the IP and date in `iplogger.json`.
> iplogger.json can be found in the same directory as IpLogger.py is stored.
**Log Example:**
```json
{
"date": "2022-12-27 19:23:54.039000",
"ip": "74.21.1.45"
}
{
"date": "2022-12-27 19:24:07.281000",
"ip": "80.61.9.22"
}
```The logs can be read with any text editor or using an JSON library like `jq`.
```bash
$ cat iplogger.json | jq -r .ip74.21.1.45
80.61.9.22
```