Viewing 1 to 10 of 23 items
Archive | Linux RSS feed for this section

Here is were the pinguin begin and end.

SNMP checking with snmpwalk and snmpget

So you have a snmpd daemon running on some box and you want to retrieve information from it, there are 2 cool tools out there namely snmpwalk and snmpget, but you can use more advanced systems like nagios etc.. Check with a client with: System UPTIME arditi@blackbox:~$ snmpget -v 2c -c public 192.168.0.15 system.sysUpTime.0 DISMAN-EVENT-MIB::sysUpTimeInstance  Full Article…

0

Bash Shortcuts Quick Reference

Ctrl-a Move to the start of the line. Ctrl-e Move to the end of the line. Ctrl-b Move back one character. Alt-b Move back one word. Ctrl-f Move forward one character. Alt-f Move forward one word. Ctrl-] x Where x is any character, moves the cursor forward to the next occurance of x. Alt-Ctrl-] x  Full Article…

0

Enable HAVP in “debug” mode.

Problems with HAVP, want more output from HAVP log file? Edit /etc/havp/havp.conf add SYSLOGLEVEL info LOGLEVEL 1 change LOG_OKS true apply /etc/init.d/havp restart or /etc/rc.d/havp restart depending on your linux distribution.

0

Spliting and Sorting a very big wordlist :)

Hi, So here the problem , I have a really big 8GB wordlist file with very good pwd’s generated from the best password list files on the net. At first, after catting all and putting in the same place I thought that would be better to split the big file in mini files so (thought  Full Article…

0

Operation not supported – Pcmanfm – mount issue

If you found this post you know already what’s all about. You cannot mount automatically external storage support on your linux box and you have dbus in your daemon list (up and running). This problem normally it’s caused by a mis-configuration when using some login managers like slim. TO FIX THIS, modify the line under:  Full Article…

0

Scanning your Linux box with ClamAV antivirus

Hi, a ClamAV tuto about how to scan properly your linux box: [cc lang="BASH"] clamscan -v –detect-pua –heuristic-scan-precedence=yes –algorithmic-detection=yes –scan-pe=yes –scan-elf=yes –scan-ole2=yes –scan-archive=yes –log=/tmp/viri–move /tmp/viri/ -r / [/cc] Before you execute this it’s better for you to do a freshclam , and update your virus database. clamscan –help for more info about what the above  Full Article…

0