bc-vnt Posted August 11, 2012 Report Share Posted August 11, 2012 Downlaod : Random PW Generator.exe download - 2sharedDownload2 : Zippyshare.com - Random PW Generator.exePublic Class Form1 Public Function makepw() As Object Dim e, f, g, h, j As Object e = "1256b47b4b42v8924242yvrehr4eh8er4h89erherh19eh89hr849h4r9eh8re9h489re4h89erh89re4hr484hrehrhererje8j949eyuvwebyevyeuvqiubvbuebvebvbviqbqi" f = Len(e) g = 30 'This is the lenht of the password Randomize() h = "" For instep = 1 To g j = Int((f * Rnd())) + 1 h = h & Mid(e, j, 1) Next makepw = h End Function Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a As String While ListBox1.Items.Count < 100 'Change this number for more passwords a = makepw() ListBox1.Items.Add(a) End While End SubEnd Class Quote Link to comment Share on other sites More sharing options...
JokerulX Posted August 12, 2012 Report Share Posted August 12, 2012 Mai bine il pui la Tutoriale, nu stiu de ce crezi ca se incadreaza aici, la programe hack. Quote Link to comment Share on other sites More sharing options...
banks Posted August 12, 2012 Report Share Posted August 12, 2012 Ideea este buna, dar designul lasa de dorit..si nici marcar nu poti copia .. uite ce am facut eu mai demultPassword Generator.exeAr trebui sa alegi si tu ce vrei sa contina parola.. Quote Link to comment Share on other sites More sharing options...
sTrEs Posted August 13, 2012 Report Share Posted August 13, 2012 Ideea este buna, dar designul lasa de dorit..si nici marcar nu poti copia .. uite ce am facut eu mai demultPassword Generator.exeAr trebui sa alegi si tu ce vrei sa contina parola..Sursa se poate ? Quote Link to comment Share on other sites More sharing options...
banks Posted August 14, 2012 Report Share Posted August 14, 2012 Sursa se poate ?using System; using System.Collections.Generic; using System.ComponentModel; - Pastebin.comproiect:Password Generator.zip Quote Link to comment Share on other sites More sharing options...
sTrEs Posted August 15, 2012 Report Share Posted August 15, 2012 (edited) Multumesc.M-ai am si eu o intrebare la voi, un program de genu' asta dar care sa modifice titlurile unor subiecte, gen: stres + wifi + network in stres - wifi - network , stres , wifi , network, etc, se poate? Edited August 15, 2012 by sTrEs later edit. Quote Link to comment Share on other sites More sharing options...
banks Posted August 15, 2012 Report Share Posted August 15, 2012 Multumesc.M-ai am si eu o intrebare la voi, un program de genu' asta dar care sa modifice titlurile unor subiecte, gen: stres + wifi + network in stres - wifi - network , stres , wifi , network, etc, se poate?Ce subiecte?Nu inteleg ..Zici daca ai un string astring a="stres+wifi+network";Sa il faci "stres-wifi-network" ? Quote Link to comment Share on other sites More sharing options...
sTrEs Posted August 15, 2012 Report Share Posted August 15, 2012 sa faca random la ele da, dintr-un titlu sa faca 50-60, daca se poate fara dubluri.din string-ul a, sa il faca in string-ul b diferit, c, etc, exemplul tau e perfect. poate si la sfarsit sa puna "],>,),[,etc" Quote Link to comment Share on other sites More sharing options...
banks Posted August 15, 2012 Report Share Posted August 15, 2012 sa faca random la ele da, dintr-un titlu sa faca 50-60, daca se poate fara dubluri.din string-ul a, sa il faca in string-ul b diferit, c, etc, exemplul tau e perfect. poate si la sfarsit sa puna "],>,),[,etc"Random rand = new Random(); // facem functia de random string a = "cacat,pisat,unt"; string b = "-/*.,<>?&^%$#"; // caracterele care vrei sa fie schimbate string c= b[rand.Next(0,b.Length)].ToString(); a = a.Replace(",", c); // inlocuim virgula cu un caracter random din stringul b 1 Quote Link to comment Share on other sites More sharing options...
sTrEs Posted August 15, 2012 Report Share Posted August 15, 2012 Am sa incerc sa-l fac, sper sa si reusesc sunt foarte newbie in VB.NET, oricum o sa imi iasa tin sa iti multumesc pentru ajutor si sursa de mai devreme. +rep ca esti un baiat saritor Quote Link to comment Share on other sites More sharing options...
caddyptm Posted August 15, 2012 Report Share Posted August 15, 2012 foarte bun,multumesc umploader Quote Link to comment Share on other sites More sharing options...