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 - RedBullAddicted

Pages: [1] 2 3 ... 23
1
News and Announcements / Re: Merry christmas 2015!
« on: December 23, 2015, 02:37:23 pm »
Merry Christmas  :-*

2
Networking / Re: ip adress and subnetting
« on: December 09, 2015, 08:54:03 am »
Hi turtleseal1,

not a bad question :) It does not necessarily have to be 123.64.64.0. I just took it casue it was the next free address.
Your complete range goes from 123.64.0.0 to 123.65.255.255. I already used the range from 123.64.0.0 - 123.64.63.255.
So the next possible address I could start from is 123.64.64.0. But you can start with something else. You just can't use the address space you already used.

Hope that helps

3
Networking / Re: ip adress and subnetting
« on: December 08, 2015, 04:58:21 pm »
Great :) Thats correct. If you really did that with pen and paper and not with a subnet calculator, I think subnetting shouldn't be a problem for you anymore.

4
Networking / Re: ip adress and subnetting
« on: December 08, 2015, 04:03:29 pm »
the netmask will stay the same. The network and broadcast address will change. Do you have an idea why this is the case? Try to build the subnet for the 17000 machines. Will 14 bits for the hosts still be enough or would you need more?

5
Networking / Re: ip adress and subnetting
« on: December 08, 2015, 10:15:07 am »
Ok, I am not a mathgician. But I already did some subnetting in my life and thats how I do it:

Check if the task is possible:
255.254.0.0 = 11111111.11111110.00000000.00000000 = 2^17 (count of 0's) = 131072 addresses available
15000 + 2000 + 1024 + 500 + 200 + 10000 + 30 + 17000 = 45754
131072 > 45754 (means its possible)

First Subnet

1 .How many bits do you need for 15000 hosts:
11111111 111111 = 2^14 = 16384 (means we need 14 bits in our subnetmask for the host part -> the host parts are 0's in the netmask)
11111111 11111111 11000000 00000000 = 255.255.192.0

2 . Calculate first and last address:
first = (addr && netmask)
last = (addr && netmask) + !netmask

First:
123.64.0.0 = 01111011 01000000 00000000 00000000
255.255.192.0 = 11111111 11111111 11000000 00000000

     01111011 01000000 00000000 00000000
&& 11111111 11111111 11000000 00000000
     01111011 01000000 00000000 00000000 = 123.64.0.0

Last:
    01111011 01000000 00000000 00000000
 + 00000000 00000000 00111111 11111111
    01111011 01000000 00111111 11111111 = 123.64.63.255

The Answer for the first subnet:
2.1.1 = 123.64.0.0
2.1.2 = 255.255.192.0
2.1.3 = 123.64.63.255
CIDR = /18
Host = 123.64.0.1 - 123.64.63.254

Second subnet:

starting point: 123.64.64.0

1. How many bits do you need for 2000 Hosts:
11111111 111 = 2^11 = 2048
11111111 11111111 11111000 00000000 = 255.255.248.0

First:
123.64.64.0 = 01111011 01000000 01000000 00000000
255.255.248.0 = 11111111 11111111 11111000 00000000

     01111011 01000000 01000000 00000000
&& 11111111 11111111 11111000 00000000
     01111011 01000000 01000000 00000000 = 123.64.64.0

Last:
   01111011 01000000 01000000 00000000
+ 00000000 00000000 00000111 11111111
   01111011 01000000 01000111 11111111 = 123.64.71.255

The answer for the second subnet:
2.1.1 = 123.64.64.0
2.1.2 = 255.255.248.0
2.1.3 = 123.64.71.255
CIDR = /21
Host = 123.64.64.1 - 123.64.71.254

Now go on and build the next subnets :)

Hope that helps!

6
Found it on the Webs / Hacking related Ezines
« on: November 17, 2015, 04:10:19 pm »
Hi,

I recently found a nice page with a collection of hacking related ezines. Some are pretty old and pretty amusing to look through. Haven't checked all of them but I thought I just download them and share them with you.

Quote
_____/\\\\\\\\___/\\\\\\\\\\\_\///___/\\/\\\\\\_______/\\\\\\\\___/\\\\\\\\\\_     
  ___/\\\/////\\\_\///////\\\/___/\\\_\/\\\////\\\____/\\\/////\\\_\/\\\//////__   
   __/\\\\\\\\\\\_______/\\\/____\/\\\_\/\\\__\//\\\__/\\\\\\\\\\\__\/\\\\\\\\\\_   
    _\//\\///////______/\\\/______\/\\\_\/\\\___\/\\\_\//\\///////___\////////\\\_ 
     __\//\\\\\\\\\\__/\\\\\\\\\\\_\/\\\_\/\\\___\/\\\__\//\\\\\\\\\\__/\\\\\\\\\\_
      ___\//////////__\///////////__\///__\///____\///____\//////////__\//////////__
                             http://kr5hou2zh4qtebqk.onion/ezines/


You just found the best(TM) collection of hacking ezines on all of the intertubes!

A lot of the zines are from the 80s and 90s, but not all of them. Hacker ezines
are not as popular as they used to be, they still exist though.

 This collection contains newsletters, bbs texts, ownages and so much more.
Since everything is ordered by name the zines are completely mixed. So if you do
not like what you read, go to another directory.

 Most of the zines are in nice and easy to read plain text. Not all zines are
released as plain text though, some are released as pdfs and archives. Booo. But
I decided to include them as well if the content is good enough.
 I try to keep the original names of the files and directories. Since I do not
always get the zines from the real source but other collections I can not
guarantee that it is always correct. I also do not modify the zines.

If you want to send me more zines or information use e-mail:

   collector_john@safe-mail.net

You can download the collection here: ezines.zip

Enjoy!

7
Beginner's Corner / Re: Game modding! WHERE TO BEGIN?
« on: November 02, 2015, 09:20:16 am »
Just wanted to leave this tutorial here:

https://evilzone.org/tutorials/intro-to-game-hacking-p1-external-memory-hacks

And here is a cs:go trigger bot. Maybe you can learn something from it.

https://evilzone.org/evilzone-releases/(release)-csgo-triggerbot-19879

8
Beginner's Corner / Re: Discover all IP addresses in a Local network.
« on: November 02, 2015, 09:04:49 am »
Consider it, You are at a company and want to know how many devices and ip ranges are exist. What do you do? Some tools like I said can help you but not working with VLANs very good.

Yep, I would do what I explained above  :)

Have you found out how to do ot if not semd me a pm id gladly help


Sent from my iPhone using Tapatalk

Why don't you just post here? I would like to hear about your solution too.

9
Networking / Re: USB Tethering/ Forward ports
« on: November 02, 2015, 07:08:06 am »
So you are actually using your phone as a wifi dongle? Why don't you just buy a wifi card or usb stick and connect your PC directly to your wlan? In your case you would have to forward the port on the router to your phone and from your phone to your PC. I do not think that you can do that on your phone.

10
Beginner's Corner / Re: Discover all IP addresses in a Local network.
« on: October 31, 2015, 06:24:09 pm »
I am not sure if I understood your question. You want to get all ip ranges a network uses with a scanner? Well, you could use any subnet scanner and let it scan all private ip address ranges (https://en.wikipedia.org/wiki/Private_network).. lol. That will take a lot of time. The other option would be guessing the ranges. If your client is located in a 10.10.0.0/24 network you could try to scan the range 10.10.0.0/16 for example and see what you can find. Another way is to capture a good amount of network packets and go through them. I explained it here (its old and not very good.. but should give you an idea what I am talking about) https://evilzone.org/tutorials/(tutorial)-basic-network-discovery
Start to get creative.. maybe you can get those information from a L3 switch or router. HP for example has a default setting which looks like this "snmp-server community public unrestricted". Seen lots of devices where the admins did not remove that part of the config.

Hope that helps??

11
Game Hacking, Modding & Discussing / Re: Game from your childhood
« on: October 19, 2015, 12:16:05 pm »
Guess my pretty first PC game I can remember was ROT (Rise of the Triad). Doom 1 with the Simpsons Doom extension. Hexen and Heretic.. damn those were pretty awesome games.. lol.

12
Science / Re: 8 bit binary problem
« on: September 23, 2015, 06:54:49 pm »
The max number that can be representable in 8 bit is 256 so it's impossible.

Maybe you should have read Stackprotectors post first. pow( 2, 8 ) is 256.. thats correct. But it only means that one byte (8 bits) can represent 256 different values which are 0 - 255 (cause 0 is a value you have to count, too). Necroing an old thread just to provide wrong information isn't such a good start, is it? :P

13
General discussion / Re: Merging Videos
« on: September 15, 2015, 01:54:48 pm »

14
General discussion / Re: Downloading in Germany
« on: August 11, 2015, 04:32:44 pm »
We do them.. isn't that enough explanation? Also an early "Willkommen in Deutschland" from me :P You can do whatever you want to do over here. There is only one thing you should take care of. Do not get caught! lol

15
General discussion / Re: Who upgraded to Windows 10?
« on: July 31, 2015, 01:45:03 pm »
I heard that win 10 sends your data back to Microsoft. Maybe that is why it is a free upgrade. Either way, not getting win 10.

And that is something new?

Pages: [1] 2 3 ... 23