jueves, 31 de octubre de 2013

[How-to] Upgrade all package from PIP

To upgrade all package; you could use pip-tools:

$ sudo pip install pip-tools
$ sudo pip-review --interactive

lunes, 21 de octubre de 2013

[Script] VirusTotal public API v2 with all features


Yesterday a just finish to write this script: VirusTotalPublicApi

Right now, this public script is the only one supporting all VirusTotal API v2 features.
This script was made public into the official VT API documentation page.




Some screenshots of usage:

    Search by hash




   Search by hash verbose mode



Verbose mode will give you a lot of information if you search Domain/Ip address

For all features, check usage mode.



Best regards

viernes, 18 de octubre de 2013

[SLAE] Part 1: 32-Bit Assembly Language


What is ASM in Linux




1) Find CPU details in Ubuntu
cat /proc/cpuinfo


2) How do you know if you are on x32/x64 bit CPU
lscpu

3) How do you know your CPUs additional capabilities such as FPU, MMX, SSE, SS2, etc
lscpu

jueves, 3 de octubre de 2013

[How to] Query all windows services config from the command line


Windows < Windows 7

for /f "tokens=5 delims=\" %A in ('reg query HKLM\SYSTEM\CurrentControlSet\Services') do sc qc %A

Windows > Windows 7 box or otherwise have the option to use WMI you can use the following command:

wmic service get pathname

Source