fuckin yes. first pension fund pulls the plug on the spacex nonsense
#slavaUkraini
fuckin yes. first pension fund pulls the plug on the spacex nonsense
We believe in a Europe that protects every single child.
On International Missing Children’s Day, our focus is on those most at risk.
We are taking decisive action by:
🇪🇺 Dedicating an additional €50 million to help bring home the Ukrainian children taken by Russia.
🛡️ Strengthening child protection systems in the EU.
🛂 Boosting cross-border cooperation, helping police and child protection services work better together.
No child should face the world alone.
Mike Johnson thinks the Congressional salary is too low and he wants us to "have some sympathy." I'll give him the same advice he and other corrupt elites give working people suffering on $7.25/hour:
•Get a Second job at $7.25/hour
•Go to college with an 8% loan
•Stop buying avocado toast
•Split rent on a studio apt
•Move in w/your parents
•”Find something new”
•Make coffee at home
•Learn to code
Be Best!
1990s New Tech: "OMG THIS IS SO COOL!"
2020s New Tech: "oh no. no, no, no, god no"
RE: https://infosec.exchange/@mttaggart/116518022621367937
Please file the appropriate abuse report and submit here
Simple shell function that calls the https://ip.thc.org service (both endpoints, with all entries / pagination support) to get subdomains or CNAMEs pointing to a subdomain, or IP addresses pointing to a subdomain:
```bash
thc-ip(){
local domain="$1"
for url in "https://ip.thc.org/${domain}?l=100" "https://ip.thc.org/cn/${domain}?l=100"
do
echo -e "[*] Querying ip.thc.org..."
while true
do
response="$(curl -s "$url")"
echo "$response"
url="$(grep "^;;Next" <<< "$response" | grep -o "https://[[:print:]]*")" || break
sleep 0.5
done
echo
done
}
```
(https://gist.github.com/emanuelduss/e5ae6e9189cc24c9aafde28595a9bd8e)
For quick and dirty subdomain enumeration 😀
THX @thc for this nice service 🤘
