Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bubzuru

Pages: [1] 2 3 ... 19
1
Hacking and Security / Re: 3G USB Modem Hacking (Free Internet)
« on: October 08, 2013, 09:37:55 pm »
I will  make a more detail post tomorrow, because it's late (here)  ..

thanx bro

2
Projects and Discussion / B.RAT
« on: October 08, 2013, 09:36:53 pm »
im looking for like 2 to 4 testers for a HTTP/IRC and Desktop remote administration tool

knowing php would help, any takers ?

3
.NET Framework / Re: [C# Snippet] Random Pronounceable Word
« on: October 08, 2013, 09:31:13 pm »
I modified your code a little:
Code: (CSharp) [Select]
/// <summary>
/// Generate a pronounceable pseudorandom string.
/// </summary>
/// <param name="r">Random number generator to use.</param>
/// <param name="len">Length of the returned string.</param>
public static string GeneratePronounceableRandomString(Random r, int len)
{
char[] consonants = {'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z'};
char[] vowels = {'a', 'e', 'i', 'o', 'u'};

StringBuilder word = new StringBuilder();
bool consonant = r.Next(0, 1) == 1;
for (int i = 0; i < len; i++)
{
word.Append(consonant ? consonants[r.Next(0, consonants.Length)] : vowels[r.Next(0, vowels.Length)]);
consonant  = !consonant;
}
return word.ToString();
}

nicebro will you comment the code for me so i can understand properly

4
Hacking and Security / Re: 3G USB Modem Hacking (Free Internet)
« on: October 08, 2013, 09:28:11 pm »
you have anymore info on this ?


5
.NET Framework / Re: [HELP] wininet.dll hook
« on: October 08, 2013, 01:18:06 am »
of course you can just use the winapi, you will need to declere all needed function first

example:
Code: [Select]
Declare Auto Function MBox Lib "user32.dll" Alias "MessageBox" (
    ByVal hWnd As Integer,
    ByVal txt As String,
    ByVal caption As String,
    ByVal Typ As Integer) As Integer

Walkthrough: Calling Windows APIs (Visual Basic):
http://msdn.microsoft.com/en-us/library/172wfck9.aspx

6
.NET Framework / Re: Sslstrip in c#, proxy requests
« on: October 08, 2013, 01:12:46 am »
maybe try to just use the winapi and normal sockets instead of TcpListener

7
.NET Framework / [C# Snippet] Random Pronounceable Word
« on: October 08, 2013, 01:01:00 am »
i needed this for a project im working on, its not the best but it kinda works

Code: [Select]
        public static string ProRandName(Random RandNumGen, int Len)
        { 
            char[] consts = {'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n',
                             'p', 'r', 's', 't', 'v', 'w', 'x', 'y','z', 'B', 'C', 'D', 
                             'F', 'G', 'H', 'J', 'K', 'L', 'M', 'N', 'P', 'R', 'S', 'T', 'V', 'W', 'X', 'Y','Z' };
         
            char[] vowls = { 'a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U' };

            bool cswitch =  Convert.ToBoolean(RandNumGen.Next(0, 2));           
            string final = "";

            for (int i = 0; i <= Len; i++)
            {
                if (cswitch == true)
                {
                    final += consts[RandNumGen.Next(1, 41) - 1];
                    cswitch = false;
                }
                else
                {
                    final += vowls[RandNumGen.Next(1, 11) - 1];
                    cswitch = true;
                }
            }
            return final;
        }

8
Found it on the Webs / Re: Free Ebooks
« on: October 07, 2013, 09:58:03 pm »
http://libgen.info is another good one

9
Found it on the Webs / Re: The Shellcode Lab
« on: October 07, 2013, 09:23:40 pm »
nice one buddy

10
Found it on the Webs / Re: The Shellcode Lab
« on: October 07, 2013, 08:30:00 pm »
do you have to pay for this ?

11
Web Oriented Coding / Re: [Request] Basic Login Page
« on: October 07, 2013, 08:08:00 pm »
this is causing the  same error i was getting

Code: [Select]
The page isn't redirecting properly
         
 Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
       

  This problem can sometimes be caused by disabling or refusing to accept
    cookies.

nm fixed it now, you just forgot to add session_start() to main.php

thanx +1

12
Found it on the Webs / Re: Imacros. Firefox plugin.
« on: October 06, 2013, 09:42:37 pm »
thanx budddy !

13
Found it on the Webs / Re: Free Ebooks
« on: October 06, 2013, 09:40:51 pm »
nice sites, thanx for contributing

14
Web Oriented Coding / [Request] Basic Login Page
« on: October 06, 2013, 08:31:21 pm »
this keeps fucking up for me, can someone give me a basic login page using
sessions , no databases im just getting user pass from a variable

page1.php << create sesion if user pass is correct
page2.php << redirect to page1.php if session is not set >> data

15
Web Oriented Coding / Re: [Request] Edit INI File ?
« on: October 06, 2013, 05:59:33 pm »
Code: [Select]
http://php.net/manual/en/language.types.array.php
It means that $content is an array which contains certain number of key => value pairs. With "foreach($content as $var => $value)", I'm taking every element of the $content array, and getting it's key and value.

ahh now i get it, thank you

Pages: [1] 2 3 ... 19