Results 1 to 9 of 9

Thread: Honeypot in vb.net?

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 2007
    Posts
    47

    Honeypot in vb.net?

    Is it possible to create a honeypot in vb.net. Just a simple honeypot that opperated on a port of my computer. Could it give the ip of the computer trying to connect? or the total bytes of data being sent? Would it be possible to create a fake telnet so time is wasted trying to crack the password? The bytes of data being sent seems doable. Here is wat i have so far:
    Code:
      Sub honeylisten(ByVal obj As Object)  'Thread
            Dim port = tports(CStr(obj))
            Try
                setresults("Honeypot Succesfully Created on port: " & port & vbNewLine)
    
                honeypot(CInt(obj)).AcceptTcpClient()
                setresults("Connection Attempt made on: " & port)
    
            Catch ex As Exception
                MsgBox(ex.Message)
            Finally
                honeypot(CInt(obj)).Server.Close()
                honeypot(CInt(obj)).Stop()
                setresults("Honeypot Closed on port: " & port & vbNewLine)
            End Try
        End Sub
    All it does is say a connection attempt was made. Useful to see if your being portscanned. But what else would be possible in vb.net?

  2. #2

    Thread Starter
    Member
    Join Date
    Nov 2007
    Posts
    47

    Re: Honeypot in vb.net?

    does this mean it cant be done?

  3. #3
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339

    Re: Honeypot in vb.net?

    What the hell is a Honeypot?

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Honeypot in vb.net?

    http://en.wikipedia.org/wiki/Honeypot


    Creating a "fake" telnet session is something we wouldnt support on our site through
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5
    Hyperactive Member
    Join Date
    Nov 2004
    Posts
    362

    Re: Honeypot in vb.net?

    I think honeypot is a trap to detect the possible net attack.

    bear

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Honeypot in vb.net?

    Yes, but seems to me IMO that its just easier to use a firewall and av to keep them out.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  7. #7

    Thread Starter
    Member
    Join Date
    Nov 2007
    Posts
    47

    Re: Honeypot in vb.net?

    Honeypots are not supposed to act as a replacement to firewalls. They give an early warning if you are going to be attacked. And act as a deterent to hackers because they increase the hackers chances of being caught. And im just wondering why a fake telnet session wouldnt be supported by the site. Im not complaining, Im just wondering.

    Edit: Would Networking be a better place for this?
    Last edited by qazwsx; Dec 4th, 2007 at 06:32 PM.

  8. #8
    Hyperactive Member
    Join Date
    Nov 2004
    Posts
    362

    Re: Honeypot in vb.net?

    honeypot is not firewall, and not supposed to replace firewall.

    it is a fake 'pot' to detect network attack. so, in case there is an attack, the system can figure this out, and block it.

    it is a way to catch hackers, and it is topic in network security.


    bear

  9. #9
    Fanatic Member TokersBall_CDXX's Avatar
    Join Date
    Mar 2003
    Location
    America
    Posts
    571

    Re: Honeypot in vb.net?



    Build your own personalized flash based chat room for your webpage for FREE! http://www.4computerheaven.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width