Ras Posted May 19, 2007 Report Posted May 19, 2007 Intra in VB fa un proiect nou.Adauga Winsock Control (apesti CTRL + T si selectezi acolo).Creeaza 2 textboxes, 2 buttons, 1 timer, 1 listbox, 1 winsockPrimul Textbox este pt IP, al doilea pt port, primul buton pt start, al doilea pt stop.Pune timerul False si pune intervalu 1.In primul buton scrii:Private Sub Command1_Click()Winsock1.RemoteHost = Text1.TextWinsock1.RemotePort = Text2.TextWinsock1.ConnectTimer1.Enabled = TrueEnd SubIn timer scrii:Private Sub Timer1_Timer()Winsock1.Close ' closes the last connectionText2.Text = Int(Text2.Text) + 1Winsock1.RemoteHost = Text1.TextWinsock1.RemotePort = Text2.TextWinsock1.ConnectEnd SubIn winsock scrii:Private Sub Winsock1_Connect()List1.AddItem "Port " & Winsock1.RemotePort & " is having a yard sale."End SubIn al doilea buton scrii:Private Sub Command2_Click()Timer1.Enabled = False ' stops the scanning timerWinsock1.Close ' closes any open winsock connection that was still open.End Sub Quote
dizzy Posted May 20, 2007 Report Posted May 20, 2007 dar te detecteaza imediat ca ii scanezi cu metoda asta de scan. acum pana si SYN scan-ul e detectat. fa unul de FIN scan, sau XMAS scan ca astea se detecteaza mai greu pe windows. Quote
DusT3r Posted June 21, 2007 Report Posted June 21, 2007 port scanneru asta mai e pus odata !! DELETE ! Quote