| Username | Name | Date | Reason |
|---|---|---|---|
| @tymkolt | Tymofii Lytvynenko | Around 2022 | Suspected machine translation, abuse of search/replace function |
| @alichaper67 | Ali Momeni | 17 April 2022 | Attempted to poison the Persian translations |
| @antoniorolon77 | Antonio Rolon | 28 June 2022 | Attempted to insert spammy texts in Esperanto strings |
| @garik23313 | Garik Inkognito | 09 July 2022 | Attempted to insert BTC address in the Disclaimer title |
| @id | Haerul Fuad | 05 September 2022 | Attempted to put his Weblate username in a string. Looking at his profile, he appears to have done the same in many other projects, including the Weblate project itself. (Also, how did he managed to get an username called id in first p |
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 | |
| # | |
| # disablespindump | |
| # Script to disable spindump | |
| # | |
| # (c) Muntashir Al-Islam | |
| # License: MIT License | |
| # |
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
| <?php | |
| if(!isset($argv[1])){ | |
| echo "USAGE: ${argv[0]} <mmssms.db file>\n"; | |
| exit(1); | |
| } | |
| $db_file = $argv[1]; | |
| $db = new SQLite3($db_file); | |
| $stmt = $db->prepare("SELECT * FROM sms"); |
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
| ||playperks.net | |
| ||allbookserve.org | |
| ||bookfreenow.com | |
| ||pdfsu.online | |
| ||akeybooks.com | |
| ||outofprint.cc | |
| ||get-ebooks.club | |
| ||mybooklibrary.com | |
| ||iread-now.com | |
| ||recmedia.me |
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
| // Get a byte array as a hexadecimal character string | |
| int hexify(const uint8_t *in, size_t in_size, char *out, size_t out_size) { | |
| if (in_size == 0 || out_size == 0) return 0; | |
| char map[16+1] = "0123456789ABCDEF"; | |
| int bytes_written = 0; | |
| size_t i = 0; | |
| while(i < in_size && (i*2 + (2+1)) <= out_size) | |
| { |
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 bash | |
| if [[ "$(uname)" == "Darwin" ]]; then | |
| alias sha256sum="shasum -a 256" | |
| fi | |
| function extract_pubkey_hash() { | |
| openssl x509 -inform der -in "$1" -pubkey -noout | sed -e 's/-----BEGIN PUBLIC KEY-----//' -e 's/-----END PUBLIC KEY-----//' | tr '\n' ',' | sed s/,//g | base64 -d | sha256sum - | awk '{ print $1 }' | xxd -r -p | base64 | |
| } |
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 | |
| # | |
| # LittleSnitchToggler | |
| # Script to enable/disable Little Snitch | |
| # (c) Muntashir Al-Islam | |
| # License: MIT License | |
| # | |
| # Alert if not a root user |
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
| # Get current Windows DisplayVersion (e.g., 24H2) | |
| $CurrentVersion = (Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion").DisplayVersion | |
| # Define the target registry path | |
| $RegPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" | |
| # Create the registry key if it does not exist | |
| if (-not (Test-Path $RegPath)) { | |
| New-Item -Path $RegPath -Force | Out-Null | |
| } |
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
| Add-Type @' | |
| using System; | |
| using System.Runtime.InteropServices; | |
| using System.Drawing; | |
| public class DPI { | |
| [DllImport("gdi32.dll")] | |
| static extern int GetDeviceCaps(IntPtr hdc, int nIndex); | |
| public enum DeviceCap { |
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 java.io.UnsupportedEncodingException; | |
| import java.security.InvalidAlgorithmParameterException; | |
| import java.security.InvalidKeyException; | |
| import java.security.Key; | |
| import java.security.KeyPair; | |
| import java.security.KeyPairGenerator; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.NoSuchProviderException; | |
| import java.security.PrivateKey; | |
| import java.security.PublicKey; |
OlderNewer