Skip to content

Instantly share code, notes, and snippets.

View nekromoff's full-sized avatar

Galimatias Nekromoff nekromoff

View GitHub Profile
@nekromoff
nekromoff / zoom-bombing.php
Last active April 3, 2020 17:26
Zoom bombing - identify Zoom existing meeting IDs
<?php
/*
Identify existing meetings/meeting IDs on Zoom.us call app
License: Public domain. Use for pranking only. Any other use prohibited.
https://gist.github.com/nekromoff/48ec26cbaecc31fccb202d1efa7d0657
*/
$ch = curl_init();
// browser kiosk web app refresh via Javascript
// this test if network is up and browser is online
function refresh() {
// network is up (but this does not mean there is a live internet connection)
if (navigator.onLine == true) {
$.ajax({
// try to fetch non-existent 404 URL that is not cached (include timestamp)
url: '../X24S54d4wqewq887_madeup_url_online_test' + new Date().getTime(),
// timeout after 3 seconds
timeout: 3000,