- Shodan : community access + commercial access
- Censys : community + commercial access (access posible for independent researchers)
- ZoomEye : community + commercial access
- Onyphe : community + commercial access
- BinaryEdge : commercial access only
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
All requests need an accounts.bahn.de Login Bearer! | |
Root URL: apis.deutschebahn.com | |
Get User Name and data: | |
GET /db/apis/bahnbonus/self-service/v1/customerdata/customerStatus | |
Get BahnBonus Account Number, Points and Stautus Level | |
GET /db/apis/bahnbonus/loyalty-service/v2/customer/loyalty |
### NOTE: if performing these steps from e.g. USB, you will
### need to boot from an EFI-enabled live image and
### then load the efivarfs kernel module in order to
### make changes to EFI variables with efibootmgr
# root shell
sudo -s
# load EFI kernel module
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
const fetch = require('node-fetch'), | |
FormData = require('form-data'); | |
// your gitea domain without trailing slash | |
const GITEA_DOMAIN = 'https://subdomain.domain.xyz'; | |
// you can find this variables when you visit your gitea installation | |
// open dev-tools and look in the Cookies section | |
const i_like_gitea = 'YOUR_I_LIKE_GITEA_STRING'; | |
const gitea_awesome = 'YOUR_GITEA_AWESOME_STRING'; |
# stop active raid
mdadm --stop /dev/md[01]
# destroy partition table on hdds
dd if=/dev/zero of=/dev/sda bs=1M count=512
dd if=/dev/zero of=/dev/sdb bs=1M count=512
dd if=/dev/zero of=/dev/sdc bs=1M count=512
dd if=/dev/zero of=/dev/sdd bs=1M count=512