Archivo de la categoría: Linux

sdf.lonestar.org

The Super Dimension Fortress is a networked community of free softwareauthors, teachers, librarians, students, researchers, hobbyists, computerenthusiasts, the aural and visually impaired. It is operated as a federallyrecognised non-profit 501(c)(7) and is supported by its members. sdf.lonestar.org

Netdiscover

Netdiscover is an active/passive address reconnaissance tool, mainly developed for those wireless networks without dhcp server, when you are wardriving. It can be also used on hub/switched networks. Requerimientos: sudo yum search libpcap sudo yum install libnet libpcap-devel [download]http://nixgeneration.com/~jaime/netdiscover/  

speedtest

Esta mona esta página: http://www.speedtest.net/

SSH Port Forwarding

Dynamic SSH $ssh -D 9999 username@ip-address-of-ssh-serverEn firefox usar red manualsolamente localhost:9999 socks 4 ————————————————————————— Desktop ssh -L 9999:localhost:8000 miservidorseguro.com Server miservidorseguro.com ————————————————— Para squid: Desktop ssh -L 9999:localhost:3128 squidserver.com servidor squid squidserver.com

locate

  locate [options] pattern Search database(s) of filenames and print matches. Matches include all files that contain pattern unless pattern includes metacharacters, in which case locate requires an exact match. *, ?, [, and ] are treated specially; / and . are not. Searches are conducted against a database of system contents that is updated… Leer más »

Howto: Linux kill and logout users

Task: How to halt/stop user called didi Type the skill command as follows:# skill -STOP -u didi You muse be root to stop other users. Task: How to resume already halted user called didi Send CONT single to user didi, type the following command:# skill -CONT -u didi Task: How to kill and logout user… Leer más »

I have disabled comments, but comments continue to be posted

If you have unchecked Allow people to post comments on the article on the Options > Discussion panel, then you have only disabled comments on future posts. To completely disable comments, you will have to edit each past post and uncheck Allow Comments from the Write Post SubPanel. Alternatively, you could delete the wp-comments-post.php file,… Leer más »

zip files

zip -r wp.zip public_html/wp Tags: zip, files

asm linux

section .data hello:     db ‘Hello world!’,10    ; ‘Hello world!’ plus a linefeed character helloLen:  equ $-hello             ; Length of the ‘Hello world!’ string                                    ; (I’ll explain soon) section .text global _start _start: mov eax,4            ; The system call for write (sys_write) mov ebx,1            ; File descriptor 1 – standard output mov ecx,hello        ; Put the offset of hello in ecx mov edx,helloLen    … Leer más »