Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


msn webcam hack?

 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
spitfire980
Expert Cheater
Reputation: 0

Joined: 04 May 2008
Posts: 113
Location: under your bed o.O

PostPosted: Mon Dec 08, 2008 11:20 pm    Post subject: msn webcam hack? Reply with quote

hey guys i dont know if this is the right spot to post this but i was just wondering if there was a webcam hack that automaticly turns on the webcam of the person im chatting too, well i know there is because my friend has is and i just wanted to know if i could get a download link for it?
_________________


20 posts[X]
40 posts[X]
60 posts[X]
80 posts[X]
100 posts[X]
110 posts [X]
GM application: http://forum.cheatengine.org/viewtopic.php?t=283556
Back to top
View user's profile Send private message
whodunnit
Newbie cheater
Reputation: 0

Joined: 29 Oct 2008
Posts: 12

PostPosted: Tue Dec 09, 2008 1:30 am    Post subject: Reply with quote

i imagine it would be on their side not yours which controls the web-cam, or else it would be an incredibly waste of internet upload/download sending to everyone on your address list all the time....
Back to top
View user's profile Send private message
SXGuy
I post too much
Reputation: 0

Joined: 19 Sep 2006
Posts: 3551

PostPosted: Tue Dec 09, 2008 3:59 am    Post subject: Reply with quote

you can hack into their webcam, but im afraid most AV's will detect it.

Search for a trojan virus called SubSeven, then read about it.

Basically, you bind it to any file you like, send it to them and wait till they run it, then if their AV doesnt go mad on them, you will have access via a port number to their machine.

This virus can control everything including turning on webcams.

Back in the day i used to bind it to programs that didnt work, then they thought nothing ran properly, but secretly it had installed the virus Wink
Back to top
View user's profile Send private message
benlue
Moderator
Reputation: 0

Joined: 09 Oct 2006
Posts: 2142

PostPosted: Tue Dec 09, 2008 4:13 am    Post subject: Reply with quote

desperate for girls? lol.
Back to top
View user's profile Send private message
sponge cake recipe
Grandmaster Cheater Supreme
Reputation: 22

Joined: 24 Sep 2007
Posts: 1635

PostPosted: Tue Dec 09, 2008 5:17 am    Post subject: Reply with quote

If you get messenger plus you can get an addon and send it to others who have plus. I think i saw something on www.evilzone.org about it. Basically you install one script on your computer and a different one (that turns on webcam) on the target computer. Your script will allow you to view it. I'm not too sure on this but I'm pretty sure that'd be an easy way. Just remember it's ILLEGAL and you'd have to be a desperate perv to do it.
Back to top
View user's profile Send private message
Wintermoot
Expert Cheater
Reputation: 0

Joined: 08 Nov 2007
Posts: 198

PostPosted: Tue Dec 09, 2008 5:48 am    Post subject: Reply with quote

You need a trojan for that. I suggest you code your own since, that will lower the chances of it being detected and, means you will not have unnecessary functions which would usually make it larger and more suspicious.

Then, you need to be good at social engineering. Or have direct access to their computer...
Back to top
View user's profile Send private message
Trucido
Moderator
Reputation: 6

Joined: 08 Sep 2007
Posts: 2792

PostPosted: Tue Dec 09, 2008 6:03 am    Post subject: Reply with quote

A worm that did this made the news a few months back.
A quick google for webcam worm shows lots of results about it.

_________________
I'm out.
Back to top
View user's profile Send private message
SXGuy
I post too much
Reputation: 0

Joined: 19 Sep 2006
Posts: 3551

PostPosted: Tue Dec 09, 2008 9:34 am    Post subject: Reply with quote

Trucido wrote:
A worm that did this made the news a few months back.
A quick google for webcam worm shows lots of results about it.


made the news a few months back? dude subseven trojans have been around for over 20 years, they need some new reporting material
Back to top
View user's profile Send private message
Labyrnth
Moderator
Reputation: 10

Joined: 28 Nov 2006
Posts: 6300

PostPosted: Tue Dec 09, 2008 11:06 am    Post subject: Reply with quote

SXGuy wrote:

made the news a few months back? dude subseven trojans have been around for over 20 years, they need some new reporting material


Roger that...
But Mobman didnt create Sub7 for hacking, he created it for remote administration software. They even told him it had too much control.

People just didnt care and used it as something bad, they totally missed the general concept of what it was really intended for.


But you can do that with autoit also, Remote web cam, or a number of things. Just like sub 7, it will have to be installed on the other persons pc just the same.
Back to top
View user's profile Send private message
Fronzel
Grandmaster Cheater Supreme
Reputation: 0

Joined: 07 Feb 2008
Posts: 1099
Location: Nexons backyard

PostPosted: Tue Dec 09, 2008 2:06 pm    Post subject: Reply with quote

In .net you can use the iCam class. tested in vb.net 2008 and works fine with USB webcams. To stream it into a pictureBox you can use it like

Private myCam As iCam
Set myCam = New iCam
myCam.initCam(Me.picOutput.Handle.ToInt32)


PicOutput is a picturebox on your form.




And here's your icam.vb


Code:

Option Explicit On
Option Strict On

Public Class iCam
#Region "Api/constants"

    Private Const WS_CHILD As Integer = &H40000000
    Private Const WS_VISIBLE As Integer = &H10000000
    Private Const SWP_NOMOVE As Short = &H2S
    Private Const SWP_NOZORDER As Short = &H4S
    Private Const WM_USER As Short = &H400S
    Private Const WM_CAP_DRIVER_CONNECT As Integer = WM_USER + 10
    Private Const WM_CAP_DRIVER_DISCONNECT As Integer = WM_USER + 11
    Private Const WM_CAP_SET_VIDEOFORMAT As Integer = WM_USER + 45
    Private Const WM_CAP_SET_PREVIEW As Integer = WM_USER + 50
    Private Const WM_CAP_SET_PREVIEWRATE As Integer = WM_USER + 52
    Private Const WM_CAP_GET_FRAME As Long = 1084
    Private Const WM_CAP_COPY As Long = 1054
    Private Const WM_CAP_START As Long = WM_USER
    Private Const WM_CAP_STOP As Long = (WM_CAP_START + 68)
    Private Const WM_CAP_SEQUENCE As Long = (WM_CAP_START + 62)
    Private Const WM_CAP_SET_SEQUENCE_SETUP As Long = (WM_CAP_START + 64)
    Private Const WM_CAP_FILE_SET_CAPTURE_FILEA As Long = (WM_CAP_START + 20)

    Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Integer, ByVal wMsg As Integer, ByVal wParam As Short, ByVal lParam As String) As Integer
    Private Declare Function capCreateCaptureWindowA Lib "avicap32.dll" (ByVal lpszWindowName As String, ByVal dwStyle As Integer, ByVal x As Integer, ByVal y As Integer, ByVal nWidth As Integer, ByVal nHeight As Short, ByVal hWndParent As Integer, ByVal nID As Integer) As Integer
    Private Declare Function capGetDriverDescriptionA Lib "avicap32.dll" (ByVal wDriver As Short, ByVal lpszName As String, ByVal cbName As Integer, ByVal lpszVer As String, ByVal cbVer As Integer) As Boolean
    Private Declare Function BitBlt Lib "GDI32.DLL" (ByVal hdcDest As IntPtr, ByVal nXDest As Integer, ByVal nYDest As Integer, ByVal nWidth As Integer, ByVal nHeight As Integer, ByVal hdcSrc As IntPtr, ByVal nXSrc As Integer, ByVal nYSrc As Integer, ByVal dwRop As Int32) As Boolean

#End Region

    Private iDevice As String
    Private hHwnd As Integer
    Private lwndC As Integer

    Public iRunning As Boolean

    Private CamFrameRate As Integer = 15
    Private OutputHeight As Integer = 240
    Private OutputWidth As Integer = 360

    Public Sub resetCam()
        'resets the camera after setting change
        If iRunning Then
            closeCam()
            Application.DoEvents()

            If setCam() = False Then
                MessageBox.Show("Errror Setting/Re-Setting Camera")
            End If
        End If

    End Sub

    Public Sub initCam(ByVal parentH As Integer)
        'Gets the handle and initiates camera setup
        If Me.iRunning = True Then
            MessageBox.Show("Camera Is Already Running")
            Exit Sub
        Else

            hHwnd = capCreateCaptureWindowA(iDevice, WS_VISIBLE Or WS_CHILD, 0, 0, OutputWidth, CShort(OutputHeight), parentH, 0)


            If setCam() = False Then
                MessageBox.Show("Error setting Up Camera")
            End If
        End If
    End Sub

    Public Sub setFrameRate(ByVal iRate As Long)
        'sets the frame rate of the camera
        CamFrameRate = CInt(1000 / iRate)

        resetCam()

    End Sub

    Private Function setCam() As Boolean
        'Sets all the camera up
        If SendMessage(hHwnd, WM_CAP_DRIVER_CONNECT, CShort(iDevice), CType(0, String)) = 1 Then
            SendMessage(hHwnd, WM_CAP_SET_PREVIEWRATE, CShort(CamFrameRate), CType(0, String))
            SendMessage(hHwnd, WM_CAP_SET_PREVIEW, 1, CType(0, String))
            Me.iRunning = True
            Return True
        Else
            Me.iRunning = False
            Return False
        End If
    End Function

    Public Function closeCam() As Boolean
        'Closes the camera
        If Me.iRunning Then
            closeCam = CBool(SendMessage(hHwnd, WM_CAP_DRIVER_DISCONNECT, 0, CType(0, String)))
            Me.iRunning = False
        End If
    End Function

    Public Function copyFrame(ByVal src As PictureBox, ByVal rect As RectangleF) As Bitmap
        If iRunning Then
            Dim srcPic As Graphics = src.CreateGraphics
            Dim srcBmp As New Bitmap(src.Width, src.Height, srcPic)
            Dim srcMem As Graphics = Graphics.FromImage(srcBmp)


            Dim HDC1 As IntPtr = srcPic.GetHdc
            Dim HDC2 As IntPtr = srcMem.GetHdc

            BitBlt(HDC2, 0, 0, CInt(rect.Width), _
              CInt(rect.Height), HDC1, CInt(rect.X), CInt(rect.Y), 13369376)

            copyFrame = CType(srcBmp.Clone(), Bitmap)

            'Clean Up
            srcPic.ReleaseHdc(HDC1)
            srcMem.ReleaseHdc(HDC2)
            srcPic.Dispose()
            srcMem.Dispose()
        Else
            MessageBox.Show("Camera Is Not Running!")
        End If
    End Function

    Public Function FPS() As Integer
        Return CInt(1000 / (CamFrameRate))
    End Function

End Class

_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites