Date: 2026-08-15
Local target: Redacted local clone path
Origin: https://bitbucket.org/0xenstechlab/cryptoskope.git
Commit: 538e965b429cb44edc1a0caf21b5b8697ba5a0df
Verdict: Confirmed malicious repository; unsafe to open as a trusted workspace, install, build, or run.
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 | |
| sudo apt-get update && sudo apt-get upgrade -y | |
| sudo apt install software-properties-common build-essential ffmpeg libsm6 libxext6 zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev liblzma-dev ffmpeg libsm6 libxext6 -y | |
| sudo add-apt-repository ppa:deadsnakes/ppa -y | |
| sudo apt install python3.10 -y |
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
| sudo apt-get install cloud-guest-utils | |
| sudo growpart /dev/nvme0n1 1 | |
| df -Th | |
| sudo resize2fs /dev/nvme0n1p1 | |
| df -h | |
| ls -l |
I hereby claim:
- I am proy24 on github.
- I am roy2407 (https://keybase.io/roy2407) on keybase.
- I have a public key ASAvcLBX7GGNMm3zjlT8EBMrd3Cy3PPpaX41nhUefHLvrgo
To claim this, I am signing this object:
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
| -----BEGIN CERTIFICATE----- | |
| MIICUjCCAbugAwIBAgIBADANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJ1czEL | |
| MAkGA1UECAwCQ0ExEjAQBgNVBAoMCU1pcnJvciBNZTEWMBQGA1UEAwwNYXBwLm1p | |
| cnJvci5tZTAeFw0yMDA2MTkxODA5MzBaFw0yMTA2MTkxODA5MzBaMEYxCzAJBgNV | |
| BAYTAnVzMQswCQYDVQQIDAJDQTESMBAGA1UECgwJTWlycm9yIE1lMRYwFAYDVQQD | |
| DA1hcHAubWlycm9yLm1lMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7SDwn | |
| re3GpnxrYefE+du/I9BczpnBRC6zwSnbihcGjv5brT+OpQfCOcqCplgTk8CS7gaM | |
| UvNQ++TdnUiKwKB4TXYpFnRP3r+BmfxBqVDcq2oPczIdM/O9Vy1bKy6uvHW3MJ1u | |
| 9R07Tgj4TES+zYZ1SodjLH/MKuwj+a5/f5oNIwIDAQABo1AwTjAdBgNVHQ4EFgQU | |
| FBcQ7xDVR1EIwpTEohszunPqz+4wHwYDVR0jBBgwFoAUFBcQ7xDVR1EIwpTEohsz |
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
| const req_query = | |
| mutation productDuplicate($productId: ID!, $newTitle: String!) { | |
| productDuplicate(productId: $productId, newTitle: $newTitle) { | |
| userErrors { | |
| field | |
| message | |
| } | |
| imageJob { | |
| id | |
| } |
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
| // IOTA JS reference library https://github.com/iotaledger/iota.lib.js/ | |
| // Examples of multi-sig transfers can be found at https://github.com/iotaledger/iota.lib.js/blob/master/examples/multisig.js | |
| iota.multisig.initiateTransfer(input, remainderAddress, multisigTransfer, function(e, initiatedBundle) { | |
| iota.multisig.addSignature(initiatedBundle, address, iota.multisig.getKey('ABCDFG', 0, 3), function(e,firstSignedBundle) { | |
| iota.multisig.addSignature(firstSignedBundle, address, iota.multisig.getKey('FDSAG', 0, 3), function(e,finalBundle) { | |
| if (isNonEmptyObject(e)) { | |
| console.log("IS VALID SIGNATURE: ", iota.utils.validateSignatures(finalBundle, address)); | |
| } | |
| }); | |
| }); |
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
| //Conf File for Kafka | |
| public static void main(String[] args) throws Exception { | |
| //read config file | |
| Properties prop = PropertyFileReader.readPropertyFile(); | |
| String zookeeper = prop.getProperty("com.iot.app.kafka.zookeeper"); | |
| String brokerList = prop.getProperty("com.iot.app.kafka.brokerlist"); | |
| String topic = prop.getProperty("com.iot.app.kafka.topic"); | |
| logger.info("Using Zookeeper=" + zookeeper + " ,Broker-list=" + brokerList + " and topic " + topic); | |
| // set producer properties |