Page 4 of 4 FirstFirst ... 234
Results 46 to 58 of 58
  1. #46
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Didn't I write a tut or application for this already?


     


     


     



    The Most complete application MPGH will ever offer - 68%




  2. #47
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Quote Originally Posted by NextGen1 View Post
    Didn't I write a tut or application for this already?

    You did make a tut on how to get the picture into another webbrowser. I do want my program to write in the antibot. So that I don't need to do it, the program does it automaticly

    So no, you didn't

  3. #48
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Then, You need a bypass. Either OCR or trying the old captcha/plaintext/sessionID trick that works with100's of popular php captchas


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. #49
    doggyrpg's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    822
    Reputation
    19
    Thanks
    103
    My Mood
    Lurking
    Look for the HTML element?
    I'm BACK.

  5. #50
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Here we go.
    This is the antibot I want my program to take



    Is it possible, or should I use the Yahoo Captcha tut?

  6. #51
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy
    Quote Originally Posted by Prfction View Post
    Here we go.
    This is the antibot I want my program to take



    Is it possible, or should I use the Yahoo Captcha tut?
    Code:
    Public NotInheritable Class ImageScanner
    
    Public Shared Function FindBitmap(ByVal Haystack As Bitmap, ByVal Needle As Bitmap, Optional ByVal ShowDebug As Boolean = False) As Rectangle()
    Dim HaystackStride As Integer = 0
    Dim HaystackBPP As Integer = 0
    Dim HaystackData As String = BitmapToString(Haystack, New Rectangle(0, 0, Haystack.Width, Haystack.Height), HaystackStride, HaystackBPP)
    Dim NeedleStride As Integer = 0
    Dim NeedleBPP As Integer = 0
    Dim NeedleData As String = BitmapToString(Needle, New Rectangle(0, 0, Needle.Width, Needle.Height), NeedleStride, NeedleBPP)
    Dim ReturnList As New List(Of Rectangle)
    For Y As Integer = 0 To Haystack.Height - Needle.Height
    For X As Integer = 0 To Haystack.Width - Needle.Width
    If GetPixelFromString(HaystackData, New Point(X, Y), HaystackStride, HaystackBPP).ToArgb <> _
    GetPixelFromString(NeedleData, New Point(0, 0), NeedleStride, NeedleBPP).ToArgb Then Continue For
    If ShowDebug Then Debug.WriteLine(New Point(X, Y).ToString)
    Dim ChildCompare As Image = Haystack.Clone(New Rectangle(X, Y, Needle.Width, Needle.Height), Imaging.PixelFormat.Format24bppRgb)
    If BitmapToString(ChildCompare, New Rectangle(0, 0, Needle.Width, Needle.Height), 0, 0) = NeedleData Then
    ReturnList.Add(New Rectangle(X, Y, Needle.Width, Needle.Height))
    End If
    ChildCompare.Dispose()
    Next
    Next
    Return ReturnList.ToArray
    End Function
    
    Private Shared Function GetPixelFromString(ByVal S As String, ByVal P As Point, _
    ByVal Stride As Long, ByVal BPP As Integer) As Color
    Dim StartPos As Long = (Stride * P.Y) + (BPP * P.X)
    Dim BChar As Char = S(StartPos + 0)
    Dim GChar As Char = S(StartPos + 1)
    Dim RChar As Char = S(StartPos + 2)
    Return Color.FromArgb(Asc(RChar), Asc(GChar), Asc(BChar))
    End Function
    
    Private Shared Function BitmapToString(ByVal Image As Bitmap, ByVal Bounds As Rectangle, ByRef Stride As Integer, ByRef BPP As Integer) As String
    Dim BitmapData As Imaging.BitmapData = Image.LockBits(Bounds, Imaging.ImageLockMode.ReadOnly, Imaging.PixelFormat.Format24bppRgb)
    BPP = (BitmapData.Stride - 1) / BitmapData.Width
    Stride = BitmapData.Stride
    Dim ImageData As String = Runtime.InteropServices.Marshal.PtrToStringAnsi(Bi tmapData.Scan0, BitmapData.Stride * BitmapData.Height)
    Image.UnlockBits(BitmapData)
    Return ImageData
    End Function
    Source: Find bitmap in bitmap [Archive] - *****.Org Forums
    -Rest in peace leechers-

    Your PM box is 100% full.

  7. The Following User Says Thank You to Zoom For This Useful Post:

    Prfction (07-03-2010)

  8. #52
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Quote Originally Posted by Zoom View Post


    Code:
    Public NotInheritable Class ImageScanner
    
    Public Shared Function FindBitmap(ByVal Haystack As Bitmap, ByVal Needle As Bitmap, Optional ByVal ShowDebug As Boolean = False) As Rectangle()
    Dim HaystackStride As Integer = 0
    Dim HaystackBPP As Integer = 0
    Dim HaystackData As String = BitmapToString(Haystack, New Rectangle(0, 0, Haystack.Width, Haystack.Height), HaystackStride, HaystackBPP)
    Dim NeedleStride As Integer = 0
    Dim NeedleBPP As Integer = 0
    Dim NeedleData As String = BitmapToString(Needle, New Rectangle(0, 0, Needle.Width, Needle.Height), NeedleStride, NeedleBPP)
    Dim ReturnList As New List(Of Rectangle)
    For Y As Integer = 0 To Haystack.Height - Needle.Height
    For X As Integer = 0 To Haystack.Width - Needle.Width
    If GetPixelFromString(HaystackData, New Point(X, Y), HaystackStride, HaystackBPP).ToArgb <> _
    GetPixelFromString(NeedleData, New Point(0, 0), NeedleStride, NeedleBPP).ToArgb Then Continue For
    If ShowDebug Then Debug.WriteLine(New Point(X, Y).ToString)
    Dim ChildCompare As Image = Haystack.Clone(New Rectangle(X, Y, Needle.Width, Needle.Height), Imaging.PixelFormat.Format24bppRgb)
    If BitmapToString(ChildCompare, New Rectangle(0, 0, Needle.Width, Needle.Height), 0, 0) = NeedleData Then
    ReturnList.Add(New Rectangle(X, Y, Needle.Width, Needle.Height))
    End If
    ChildCompare.Dispose()
    Next
    Next
    Return ReturnList.ToArray
    End Function
    
    Private Shared Function GetPixelFromString(ByVal S As String, ByVal P As Point, _
    ByVal Stride As Long, ByVal BPP As Integer) As Color
    Dim StartPos As Long = (Stride * P.Y) + (BPP * P.X)
    Dim BChar As Char = S(StartPos + 0)
    Dim GChar As Char = S(StartPos + 1)
    Dim RChar As Char = S(StartPos + 2)
    Return Color.FromArgb(Asc(RChar), Asc(GChar), Asc(BChar))
    End Function
    
    Private Shared Function BitmapToString(ByVal Image As Bitmap, ByVal Bounds As Rectangle, ByRef Stride As Integer, ByRef BPP As Integer) As String
    Dim BitmapData As Imaging.BitmapData = Image.LockBits(Bounds, Imaging.ImageLockMode.ReadOnly, Imaging.PixelFormat.Format24bppRgb)
    BPP = (BitmapData.Stride - 1) / BitmapData.Width
    Stride = BitmapData.Stride
    Dim ImageData As String = Runtime.InteropServices.Marshal.PtrToStringAnsi(Bi tmapData.Scan0, BitmapData.Stride * BitmapData.Height)
    Image.UnlockBits(BitmapData)
    Return ImageData
    End Function
    Source: Find bitmap in bitmap [Archive] - *****.Org Forums
    Ty. You have any clue on how I should put it in my code to get it to work?

  9. #53
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    REALLY SORRY FOR THE OUT SIDE LINKS BUT I FOUND WHAT HE WANTS.(i think)

    try this:
    Captcha by Mohandes Zalatan

    or this:
    Captcha class for preventing bots in ASP.NET by Richard Bean

    again sorry for the outside link but planet source code aint that bad

  10. #54
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Quote Originally Posted by trevor206 View Post
    REALLY SORRY FOR THE OUT SIDE LINKS BUT I FOUND WHAT HE WANTS.(i think)

    try this:
    Captcha by Mohandes Zalatan

    or this:
    Captcha class for preventing bots in ASP.NET by Richard Bean

    again sorry for the outside link but planet source code aint that bad
    Omg.. I'm not rude to you now.. But you should think on reading the whole tread before replying with a totally wrong thing..! Read trough the thread and you'll see that I ain't asking about this

  11. #55
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Quote Originally Posted by Prfction View Post
    Omg.. I'm not rude to you now.. But you should think on reading the whole tread before replying with a totally wrong thing..! Read trough the thread and you'll see that I ain't asking about this
    then what are u asking i read ur first post i dont get it u say anti bot but i really dont get it what are u asking for like something so ur program cant be botted or to do the captcha on like anysite? sorry for me misunderstanding.
    Last edited by trevor206; 07-04-2010 at 08:58 AM.

  12. #56
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Quote Originally Posted by trevor206 View Post
    then what are u asking i read ur first post i dont get it u say anti bot but i really dont get it what are u asking for like something so ur program cant be botted or to do the captcha on like anysite? sorry for me misunderstanding.
    It's okay

    I want my program to do Captcha a site So that I don't need to fill in the captcha, got me?

  13. #57
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Quote Originally Posted by Prfction View Post
    It's okay

    I want my program to do Captcha a site So that I don't need to fill in the captcha, got me?
    ok i got u now i know how to make it fill in manually like u type it in a textbox and press a button and there u go it fills it in. if u mean that add me on
    msn

    but if u mean like automaticly check this out
    SORRY FOR THE OUTSIDE LINK...
    https://www.brains-n-brawn.com/defau...vDir=aicaptcha

    there is no code there just picture of what the guy made but i think its what u want.
    Last edited by meme; 08-18-2021 at 03:21 PM.

  14. #58
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Quote Originally Posted by trevor206 View Post
    ok i got u now i know how to make it fill in manually like u type it in a textbox and press a button and there u go it fills it in. if u mean that add me on
    msn: [

    but if u mean like automaticly check this out
    SORRY FOR THE OUTSIDE LINK...
    brains-N-brawn.com

    there is no code there just picture of what the guy made but i think its what u want.
    It was that yes.. But i've thinked on it, and it is to hard for me. So i'm going to do it manually, i'll add you to msn!
    Last edited by meme; 08-18-2021 at 03:22 PM.

Page 4 of 4 FirstFirst ... 234

Similar Threads

  1. [Help Request] [Help Request] How to make No Recoil hack in Visual Studio?
    By Tstovall in forum CrossFire Help
    Replies: 5
    Last Post: 07-20-2011, 02:55 AM
  2. [Help/Request] How to make a login that saves accounts
    By Klumzy in forum Visual Basic Programming
    Replies: 11
    Last Post: 12-04-2009, 03:11 AM
  3. How to make your program minimize into the task bar?
    By deathninjak0 in forum Visual Basic Programming
    Replies: 8
    Last Post: 11-29-2009, 05:01 AM
  4. Replies: 6
    Last Post: 11-16-2009, 08:53 PM
  5. help me how to make a hack
    By josephjboogie3 in forum WarRock - International Hacks
    Replies: 11
    Last Post: 10-08-2007, 08:14 PM