nmap postfix
http://blog.datencamp.org/2012/08/howto-trick-nmaps-service-detection/
http://blog.datencamp.org/2012/08/howto-trick-nmaps-service-detection/
*-*-*-*-*-*-*_*-*-*-*-*-*-*_*-*-*-*-*-*-*_ Final de Línea agregar texto Buscar y Reemplazar $ :%s/$/,/ :%s/$/,/ : – enter command mode % – for every line s – substitute /$ – the end of the line /,/ – change it to a comma *-*-*-*-*-*-*-*-*-*-*-*-* PRINCIPIO DE LÍNEA AGREGAR TEXTO :%s/^/foo: / :%s/$/,/ : – enter command mode % -… Leer más »
It won’t matter if you run 32 or 64 bit for Kodi. The error you are getting is because the server timeout setting is too short. c:\Users\<your user name>\AppData\Roaming\Kodi\userdata\addon_data\pvr .stalker\settings.xml Find this and change the value to something reasonably higher… like 60 up to 90 <setting id=»connection_timeout» value=»65″ />
http://www.htpcbeginner.com/5-kodi-advanced-settings-i-always-use/ Kodi advanced settings stored in advancedsettings.xml can be used to tweak various settings that cannot be edited through the GUI. Advanced settings, as the name suggests, are “advanced” and hence most users do not have to set them. Some examples of Kodi or XBMC advancedsettings.xml include MySQL library, episode naming patterns, special behaviors,… Leer más »
iptables -F iptables -A INPUT -p tcp –tcp-flags ALL NONE -j DROP iptables -A INPUT -p tcp ! –syn -m state –state NEW -j DROP iptables -A INPUT -p tcp –tcp-flags ALL ALL -j DROP iptables -A INPUT -i lo -j ACCEPT iptables -A INPUT -p tcp -m tcp –dport 80 -j ACCEPT iptables -A… Leer más »
Do you ever wanted to use SSH as a VPN? There is little piece of useful utility called “sshuttle” is available to completely turn your SSH connection as VPN. sshuttle is a transparent proxy server that works as a poor man’s VPN over ssh. You don’t need any admin account on your remote system. It… Leer más »
March 1, 2010 at 9:17 pm · Filed under Technology ·Tagged add, awk, linux, list, sum, unix 1 ls -l | awk ‘{ TOTAL += $5} END { print TOTAL/1024/1024 }’ With this, awk will pull field number 5 from ls -l, which is the size in bytes in most of the *nix platforms. Then… Leer más »
HP ProLiant DL980 G7 Configure-to-order Server AM451A Supports up to eight 10-Core Intel® Xeon® E7-4800 sequence processors PC3-10600R Fully Buffered DIMMs (DDR3) with 32 memory slots Support for up to 8 hot plug SFF SAS drives HP Smart Array P410i with optional Fast Backed Write Cache (FBWC) HP NC375i Integrated Quad Port Multifunction Gigabit Server… Leer más »
Linux List All Large Files To finds all files over 50,000KB (50MB+) in size and display their names, along with size, use following syntax: Syntax for RedHat / CentOS / Fedora Linux find {/path/to/directory/} -type f -size +{size-in-kb}k -exec ls -lh {} \; | awk ‘{ print $9 «: » $5 }’ Search or find… Leer más »
set net:limit-rate «download bytes» : «upload bytes» Download y Upload 20mbps set net:limit-rate 10480000:10480000 set net:limit-rate 15480000:15480000 set net:limit-rate 20480000:20480000 10 Kb/s -> 10240 500 Kb/s -> 512000 Example: Upload 512kbs set net:limit-rate 0:512000 Example: Upload 20mbps set net:limit-rate 0:20480000