🔒 Closed How to get your omegle video call's IP adress

Status
Not open for further replies.

Mina Minari

Forum Veteran
punta ka omegle tapos right click, inspect and go to console
and put this code, video call while the inspect is open so you can see thier ip ad


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
}


pa feed back kung gumagana pa yung code
 
Status
Not open for further replies.

Similar threads

About this Thread

  • 3
    Replies
  • 385
    Views
  • 4
    Participants
Last reply from:
PHC_Hanzol

Online now

Members online
1,024
Guests online
2,576
Total visitors
3,600

Forum statistics

Threads
2,331,647
Posts
29,259,696
Members
1,147,748
Latest member
cvcc
Back
Top