ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content

QuiGonJinn's Content

There have been 23 items by QuiGonJinn (Search limited from Jun 09, 2023)


By content type

See this member's


Sort by                Order  

#38281052 Website security

Posted by QuiGonJinn on 27 April 2022 - 09:42 PM in HTML, CSS, JS & PHP

using tor and making/hosting the site via tor would be very anonymous, extra layer of good vpn (vpn4, pp)




#38281086 VB Decompiler Pro v10.0 + Key

Posted by QuiGonJinn on 27 April 2022 - 09:46 PM in .NET Framework

wow that looks very beautiful and simple, great work and a good project to get used to reflection :D




#38280994 need help with html

Posted by QuiGonJinn on 27 April 2022 - 09:37 PM in HTML, CSS, JS & PHP

yea ctrl+F5 will do it. Also interesting, you can use your browser to resize the items trough the "inspector" or use js fiddle, but the browser got all you need




#38325967 Logitech yoga mouse SE method

Posted by QuiGonJinn on 01 May 2022 - 07:10 PM in Social Engineering

yo pm me now please, I can code




#38282407 Kaspersky Tweak Assistant

Posted by QuiGonJinn on 27 April 2022 - 11:47 PM in Cracking Tools

but does it connect to the internet or distribute at all?




#38272218 I NEED HELP HOSTING A RAT FOR UNI PROJECT , i'd pay

Posted by QuiGonJinn on 27 April 2022 - 03:51 AM in .NET Framework

dang it, Iam so late... well since today (actually yesterday) Iam here to make a active economy.




#38282392 How to steal minecraft account?

Posted by QuiGonJinn on 27 April 2022 - 11:45 PM in Requests

you can send someone a trojan to read it out or you check the password with the email for the account,

For example a combo list, it is a list that contains emails and passwords that are very common, likly to match or from dataleaks or anything else, like this:

[email protected]:rijgiderjg8etg490
 

and in such a list, you find more than 10 or 100.000 accounts you could check.

 

You are not allowed to do that, which is why you should buy a VERY GOOD vpn, not like nord or etc., use pp.

 




#38272153 How to make this little PE Loader work with x64?

Posted by QuiGonJinn on 27 April 2022 - 03:43 AM in C/C+

Oooooh my bad! I have read a totally wrong titel but i think it could be interesting for someone else, later...

Try to change the DWORD into a DWORD64.

i loved my name "scaleRe"




#38272146 How to make this little PE Loader work with x64?

Posted by QuiGonJinn on 27 April 2022 - 03:42 AM in C/C+

Well you can write me now at [email protected]

I lost my pw but well, here we go again




#38281028 How to learn JavaScript

Posted by QuiGonJinn on 27 April 2022 - 09:40 PM in HTML, CSS, JS & PHP

you could try to start with a beginner course.

 

If you try to go for a strong education you could use visual studio code and node.js to get a better idea of what you  can do with back end, middleware and front end




#38281059 How to get source code from js

Posted by QuiGonJinn on 27 April 2022 - 09:43 PM in HTML, CSS, JS & PHP

you cant see the scripts from the backend but the embeded scripts, search trough the html code for ".js" and click on the refernced links




#38272224 Help with checkers

Posted by QuiGonJinn on 27 April 2022 - 03:52 AM in .NET Framework

pm me, maybe I can help you :D

 




#38272137 [Tutorial C#] Bypass reCaptcha FOR FREE with selenium C#

Posted by QuiGonJinn on 27 April 2022 - 03:41 AM in .NET Framework

sounds interesting, lets have a look...

Btw very impressive




#38304203 [Source Code VB.Net/C#] Convert Byte() to Bitmap or Image

Posted by QuiGonJinn on 30 April 2022 - 12:00 AM in .NET Framework

Hello there,

 

this code will make a image out of the bytes of a byte array.

 

How to use?

Easy, you just read the bybtes of any file, and use them as a paramter for the "fileToPixels" function.
 

Where to use it?

 

Where ever you want to put a bytearray into an image. You can also use all three color-codes out of RGB or even four from the RGBA code. This will reduce the image sice, since there are less pixels and less potential "save-places" for the bytes


Codes:

Code in VB.NET
 

   Function fileToPixels(ByVal st As Byte()) As Bitmap
        Dim sl As Integer = st.Length - 1
        Dim bb As Bitmap = New Bitmap(st.Length, 1)
        For i = 0 To sl - 1
            bb.SetPixel(i, 0, Color.FromArgb(0, st(i), 0))
        Next
        bb.Dispose()
        Return bb
   End Function
   Function pixelsToFile(ByVal btm As Bitmap)
        Dim bwidth = btm.Width
        Dim mm As MemoryStream
        mm = New MemoryStream
        For i = 0 To bwidth - 1
            mm.WriteByte(btm.GetPixel(i, 0).G)
        Next
        Dim bt As Byte() = mm.ToArray
        mm.Dispose()
        IO.File.WriteAllBytes("C:\Users\rdm_filename.exe", bt)
   End Function

Code in C#
 

   public Bitmap fileToPixels(byte[] st)
    {
        int sl = st.Length - 1;
        Bitmap bb = new Bitmap(st.Length, 1);
        for (var i = 0; i <= sl - 1; i++)
            bb.SetPixel(i, 0, Color.FromArgb(0, st[i], 0));
        bb.Dispose();
        return bb;
    }
    public void pixelsToFile(Bitmap btm)
    {
        var bwidth = btm.Width;
        MemoryStream mm;
        mm = new MemoryStream();
        for (var i = 0; i <= bwidth - 1; i++)
            mm.WriteByte(btm.GetPixel(i, 0).G);
        byte[] bt = mm.ToArray();
        mm.Dispose();
        System.IO.File.WriteAllBytes(@"C:\Users\rdm_filename.exe", bt);
    }

Results cant be shown due to the weird image-format. encryption and compression is possible, get the Ascii code trough String.Asc("").

I made a matrix version with two "for" loops, you can do that too! Square out the length, add +1 and use it as the maximum to reach.
 

//Int sqr_root = (length^(1/2));
' Dim sqr_root = (Length^(1/2))

for (Int I = 0; I < (sqr_root+1); I++){//code}


Result of matrix:

2Dg95jv.png

PRO TIP: dont try to convert the bytes into a file, they are manipulated so its impossible :D




#38272112 [C#] [Free $$$] BitBin bot

Posted by QuiGonJinn on 27 April 2022 - 03:38 AM in .NET Framework

I also will release a project to bitcoins and getting them for free.

 

Everything seems so inefficient, doesnt it?