Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
malwaredllc
GitHub Repository: malwaredllc/byob
Path: blob/master/web-gui/buildyourownbotnet/data/autosuggest-remote.php
1293 views
1
<?php
2
3
$query = $_GET['q'];
4
5
$resp = array(
6
);
7
8
$resp[] = $query . strrev($query);
9
$resp[] = $query . " " . mt_rand(1,99);
10
$resp[] = $query . " " . mt_rand(1,99);
11
$resp[] = $query . " " . mt_rand(1,99);
12
$resp[] = $query . " " . mt_rand(1,99);
13
$resp[] = $query . " " . mt_rand(1,99);
14
$resp[] = $query . " " . str_shuffle($query);
15
16
echo json_encode($resp);
17