DEV Community

Teddy Zugana
Teddy Zugana

Posted on • Edited on

1

How to Find Someones IP Address/Location on Omegle With Google Chrome

Open https://www.omegle.com/ with google chrome
on Development tool, console , paste this code :

window.oRTCPeerConnection  = window.oRTCPeerConnection || window.RTCPeerConnection



window.RTCPeerConnection = function(...args) {

 const pc = new window.oRTCPeerConnection(...args)



pc.oaddIceCandidate = pc.addIceCandidate



pc.addIceCandidate = function(iceCandidate, ...rest) {

 const fields = iceCandidate.candidate.split(' ')



if (fields[7] === 'srflx') {

console.log('IP Address:', fields[4])

}

return pc.oaddIceCandidate(iceCandidate, ...rest)



}



return pc

}

Enter fullscreen mode Exit fullscreen mode

Top comments (2)

Collapse
 
kevinmel2000 profile image
Teddy Zugana

as long you can open console browser on dev mode , just copy paste the code

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs