This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BigBlueButton downloader by BigNerd95 | |
url="$1" | |
proto=$(echo "$url" | sed -e 's|^\(.*://\).*|\1|g') | |
domain=$(echo "$url" | sed -e 's|^[^/]*//||' -e 's|/.*$||') | |
mid=$(echo "$url" | sed -e 's|.*meetingId=||') | |
base=$(echo "$proto$domain/presentation/$mid") | |
audio=$(echo "$base/video/webcams.mp4") | |
video=$(echo "$base/deskshare/deskshare.mp4") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
url="http://api.ipify.org/" | |
user="pppoeuser" | |
pass="pppoepwd" | |
nic="dsl0.835" | |
name="wan100" | |
echo "Starting new pppoe connection" | |
/usr/sbin/pppd updetach ipparam $name ifname pppoe-$name user $user password $pass lcp-echo-interval 86400 lcp-echo-failure 1024 lcp-echo-adaptive +ipv6 set AUTOIPV6=1 set PEERDNS=0 nodefaultroute usepeerdns maxfail 1 ip-up-script /lib/netifd/ppp-up ipv6-up-script /lib/netifd/ppp6-up ip-down-script /lib/netifd/ppp-down ipv6-down-script /lib/netifd/ppp-down mtu 1492 mru 1492 plugin rp-pppoe.so nic-$nic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change SERVER.DOMAIN.OR.IP in client.ovpn | |
write_conf(){ | |
export EASYRSA_CERT_EXPIRE=3650 | |
export EASYRSA_CRL_DAYS=3650 | |
export EASYRSA_PKI="pki" | |
export EASYRSA_REQ_CN="vpnca" | |
cat << 'EOF' > "pki/openssl-easyrsa.cnf" | |
RANDFILE = $ENV::EASYRSA_PKI/.rnd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
using System.IO; | |
namespace StKeyGen | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Credenziali voip TIM + Proxy IP | |
import sys | |
import random | |
import json | |
try: | |
import requests | |
except ImportError: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- C:\Users\All Users\Focus On Eyes 2000\stampe\Ce\CE e Istruzioni.rep | |
+++ C:\Users\All Users\Focus On Eyes 2000\stampe\Ce\CE e Istruzioni.rep | |
@@ -2146,7 +2146,7 @@ | |
AlignToBand = False | |
AutoSize = True | |
AutoStretch = False | |
- Caption = 'Questa dichiarazione viene conservata per 5 anni.' | |
+ Caption = 'La dichiarazione viene conservata per 10 anni o a norma di legge.' | |
Color = clWhite | |
Font.Charset = DEFAULT_CHARSET |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# TIMLineInfo by BigNerd95 | |
import requests, xmltodict, sys | |
import lxml.etree as etree | |
TIMurl = "https://187iphone.telecomitalia.it:16443/atsProxy/proxy?service=GetLineInfoService&operation=getLineInfo" | |
TIMpayload = {'xml': '<get:input><xsd:provenienza>iPhone</xsd:provenienza><xsd:tid>0000000000.000000</xsd:tid><xsd1:ip>0.0.0.0</xsd1:ip></get:input>'} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See README |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from ftplib import FTP | |
import io, re, sys | |
NETGEAR_SERVER = "updates1.netgear.com" | |
class NetgearFtp(): | |
def __init__(self, user=None, pwd=None): | |
self.ftp = FTP(NETGEAR_SERVER) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[BITS 16] ;modalita' a 16 bit | |
[ORG 0x600] ;indirizzo origine 0x600 (dopo la copia dell'mbr il codice sara' eseguito con indirizzi relativi a partire da 0x600) | |
; ********* Inizio codice ********** | |
;questa prima parte di codice sara' eseguita in [0x7C00, 0x7DFF] | |
; ----- copia mbr da [0x7C00, 0x7DFF] a [0x600, 0x7FF] ----- | |
XOR CX,CX ;azzera CX con uno XOR su se stesso (Counter 16bits) |
NewerOlder