🔒 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
  • 383
    Views
  • 4
    Participants
Last reply from:
PHC_Hanzol

Online now

Members online
1,184
Guests online
2,885
Total visitors
4,069

Forum statistics

Threads
2,318,032
Posts
29,193,965
Members
1,180,775
Latest member
dakonasijubil201025
Back
Top