This file contains 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 python | |
from checkm8 import * | |
def main(): | |
print '*** checkm8 exploit by axi0mX ***' | |
device = dfu.acquire_device(1800) | |
start = time.time() | |
print 'Found:', device.serial_number |
This file contains 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
nirvana@hp:/var/cuda-repo-ubuntu2204-11-8-local$ sudo apt -f install | |
Lecture des listes de paquets... Fait | |
Construction de l'arbre des dépendances... Fait | |
Lecture des informations d'état... Fait | |
Correction des dépendances... Fait | |
Les paquets supplémentaires suivants seront installés : | |
libnvidia-cfg1-520 libnvidia-cfg1-525 libnvidia-common-520 | |
libnvidia-common-525 libnvidia-compute-520 libnvidia-compute-520:i386 | |
libnvidia-compute-525 libnvidia-compute-525:i386 libnvidia-decode-520 | |
libnvidia-decode-520:i386 libnvidia-decode-525 libnvidia-decode-525:i386 |
This file contains 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
def bit(x,n): return (x>>n)&1 | |
def bit_slice(x,msb,lsb): return (x&((2<<msb)-1))>>lsb | |
def bv2i(*args): | |
o=0 | |
for i in args: o=(o<<1)|i | |
return o | |
def fa(x): return bit(0x3a35acc5,x) |