This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# | |
# For the sake of humanity here's a python script retrieving | |
# ip information of the network interfaces. | |
# | |
# Pay some tribute to my soul cause I lost a few years on this one | |
# | |
# based on code from jaraco and many other attempts | |
# on internet. | |
# Fixed by <@gpotter2> from scapy's implementation to |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// load variables | |
require('dotenv').config(); | |
// load dependencies | |
const crypto = require('crypto'); | |
'use strict'; | |
const APP_KEY = process.env.APP_KEY; |