These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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
| # Obtenir la version de Windows | |
| $windowsVersion = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").ReleaseId | |
| $windowsBuild = (Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").CurrentBuild | |
| # Afficher la version et le build | |
| Write-Host "Version de Windows : $windowsVersion" | |
| Write-Host "Build de Windows : $windowsBuild" | |
| # Vérifier si la fonctionnalité "Recall" est activée | |
| $RecallEnabled = Dism /online /Get-FeatureInfo /FeatureName:Recall | findstr /B /C:"State" |
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
| Set WshShell = CreateObject("WScript.Shell") | |
| ' Function to convert text to binary | |
| Function TextToBinary(text) | |
| Dim binary, i, char | |
| For i = 1 To Len(text) | |
| char = Asc(Mid(text, i, 1)) | |
| binary = binary & Right("00000000" & BinaryStr(char), 8) | |
| Next | |
| TextToBinary = binary |
user@hostname:~/exploit$ cat > test.c#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main() {
if (setuid(0) != 0) {
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
| alias dtail='docker logs -tf --tail='50' ' | |
| alias dstop='docker stop `docker ps -aq`' | |
| alias drm='docker rm `docker ps -aq`' | |
| alias dcp='docker-compose -f ~/docker-compose.yml ' | |
| alias dcporph='docker-compose -f ~/docker-compose.yml up -d --remove-orphans' | |
| alias dprune='docker image prune' | |
| alias dprunesys='docker system prune --all' |
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
| import time | |
| from collections import deque | |
| import numpy as np | |
| import sounddevice as sd | |
| from beepy import beep | |
| from infi.systray import SysTrayIcon | |
| last_alert = time.time() - 10 | |
| q = deque(maxlen=200) |
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
| echo "" | |
| echo "************ Github Dork Links (must be logged in) *******************" | |
| echo "" | |
| echo " password" | |
| echo "https://github.com/search?q="hackertarget.site"+password&type=Code" | |
| echo "https://github.com/search?q=""hackertarget""+password&type=Code" | |
| echo "" | |
| echo " npmrc _auth" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| // ==UserScript== | |
| // @name Web Based Microsoft Teams Presence To NodeRed/HomeAssistant | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Sends HTTP request to NodeRed HTTP Listener when Web based Microsoft Teams status/presence changes to enable automated actions in NodeRed/HomeAssistant | |
| // @author instance.id | |
| // @match https://*.teams.microsoft.us/* | |
| // @grant none | |
| // ==/UserScript== |
NewerOlder