You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
How about adding an optional query string parameter, which offers the opportunity to single out a single target.
That'll help novices target bandwidth and cycles, and it'll make it easier to broadcast focused campaigns with links like: https://norussians.xyz?target=https://fsb.ru/
Just an idea.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
How about adding an optional query string parameter, which offers the opportunity to single out a single target.
That'll help novices target bandwidth and cycles, and it'll make it easier to broadcast focused campaigns with links like:
https://norussians.xyz?target=https://fsb.ru/
Just an idea.
. . . snip . . .
<script>
var targets = {};
var urlParams = new URLSearchParams(window.location.search);
var target = urlParams.get('target');
if (!!target) {
targets[target] = { number_of_requests: 0, number_of_errored_responses: 0};
} else {
targets = {
'https://absolutbank.ru/': { number_of_requests: 0, number_of_errored_responses: 0 },
'https://www.avangard.ru/rus/': { number_of_requests: 0, number_of_errored_responses: 0 },
'https://www.avtogradbank.ru/': { number_of_requests: 0, number_of_errored_responses: 0 },
. . . snip . . .
Beta Was this translation helpful? Give feedback.
All reactions