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
| ; compile with | |
| ; nasm -f elf32 test_main.asm && gcc -o test_main -m32 test_main.o && ./test_main | |
| section .data | |
| msg db 'Elevazione a potenza', 13, 10, 0 | |
| base_str db 'Base: %d ', 13, 10, 0 | |
| esp_str db 'Esponente: %d', 13, 10, 0 | |
| res_str db 'Risultato: %d', 13, 10, 0 | |
| base dd 5 |
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/bash | |
| usage(){ | |
| echo "Usage:" | |
| echo "$0 FOLDER_TO_COMPRESS [-e] [-v]" | |
| echo "-e: encrypt" | |
| echo "-v: verbose" | |
| } | |
| compress(){ |
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) |
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
| # 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 | |
| # 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
| --- 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 | |
| # 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
| 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
| # 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 |