https://github.com/bsysop/IpLogger
  
  
     
    https://github.com/bsysop/IpLogger
  
        Last synced: 4 months 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 3 years ago)
 - Default Branch: main
 - Last Pushed: 2022-12-27T22:28:18.000Z (almost 3 years ago)
 - Last Synced: 2025-07-06T22:05:05.890Z (4 months ago)
 - Language: Python
 - Size: 5.86 KB
 - Stars: 15
 - Watchers: 1
 - Forks: 2
 - 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 .ip
74.21.1.45
80.61.9.22
```