Fingerprint ID: 56ybn44ml
Response Stats:
HTTP 1.1
Status code: 503
Response Headers:
{
'Content-Length': '14889',
Fingerprint ID: 56ybn44ml
Response Stats:
HTTP 1.1
Status code: 503
Response Headers:
{
'Content-Length': '14889',
Fingerprint ID: 8bi4a6hka
Response Stats:
HTTP 1.1
Status Code: 400
Response Headers:
{
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# | |
# Written by: 0xInfection | |
# Context: https://twitter.com/har1sec/status/1183987309445820416 | |
# Problem: https://gist.github.com/harisec/bff0ac7ad2e90da7e82297d945c63ef1 | |
import optparse, sys | |
from urllib.parse import urlparse |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
def linSearch(arr, x): | |
for i in range(0, len(arr)): | |
if arr[i] == x: | |
print() | |
return "Element found!" | |
def binSearch(arr, x, upper, lower=0): |
#!KAMAILIO | |
# | |
# Kamailio (OpenSER) SIP Server v5.1 - default configuration script | |
# - web: https://www.kamailio.org | |
# - git: https://github.com/kamailio/kamailio | |
# | |
# Direct your questions about this file to: <[email protected]> | |
# | |
# Refer to the Core CookBook at https://www.kamailio.org/wiki/ | |
# for an explanation of possible statements, functions and parameters. |
# Do reverse ip lookup via the yougetsignal.com API (illegally). | |
# No license, do whatever you want to do with this script. | |
import io | |
import json | |
import time | |
import requests | |
def request(webs: str): | |
url = "https://domains.yougetsignal.com/domains.php" |
import "sync" | |
func exampleFunc(str string) { | |
// function to run concurrently | |
} | |
func main() { | |
threadVal := 50 // number of threads to use | |
allItems := []string{} // the slice containing whatever you want to pass to exampleFunc | |
// creating a channel of strings, use whatever type the exampleFunc() takes in |
jd = { | |
"left": { | |
"left": { | |
"type": "Literal", | |
"value": "a" | |
}, | |
"right": { | |
"type": "Literal", | |
"value": "b" | |
} |
name: My Custom Automation Setup | |
on: | |
# Triggers the workflow when you push a commit to master branch | |
push: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: |