- 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
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb | |
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb |
#! /usr/bin/env python3 | |
''' | |
Needs Requests (pip3 install requests) | |
Author: Marcello Salvati, Twitter: @byt3bl33d3r | |
License: DWTFUWANTWTL (Do What Ever the Fuck You Want With This License) | |
This should allow you to detect if something is potentially exploitable to the log4j 0day dropped on December 9th 2021. |
https://www.nerdfonts.com/font-downloads
The following solution thanks to @hackerzgz & @snacky101 will install all nerd fonts;
brew tap homebrew/cask-fonts
brew search '/font-.*-nerd-font/' | awk '{ print $1 }' | xargs -I{} brew install --cask {} || true
## Installation script for OpenVAS/Greenbone 20.08 on Ubuntu 20.08 | |
## Tested for PatrowlEngines | |
## See https://patrowl.io | |
## Based on: | |
# https://kifarunix.com/install-and-setup-gvm-11-on-ubuntu-20-04/#create-gvm-service-unit-file | |
# https://github.com/yu210148/gvm_install/blob/master/install_gvm.sh | |
apt-get update && apt-get upgrade | |
useradd -r -d /opt/gvm -c "GVM User" -s /bin/bash gvm | |
mkdir /opt/gvm |
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill
) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.
#!/bin/bash | |
# As of 2017 Feb, Instagram allows multiple photos to be posted side by side. | |
# @idealisms posted some panoramas split up into separate photos. | |
# I wrote this script to generate those square photos from a panorama. | |
if [ -z "$1" ]; then | |
echo "Usage: $0 filename.jpg" | |
exit | |
fi |
# Yes, you can use it with multithreading or others. | |
# But my task was to remove 300 media tweets without limits. | |
# It's easy and don't use and to give access for others services like a TweetDeleter, TwitWipe etc. | |
from twitter import * | |
from requests_html import HTMLSession | |
from time import sleep | |
from sys import exit | |
session = HTMLSession() |
server { | |
server_name .DOMAIN-NAME; | |
listen 80; | |
# Redirect all HTTP requests to HTTPS with a 301 Moved Permanently response. | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl http2; | |
gzip on; |