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

Pages: [1] 2 3 ... 5
1
News and Announcements / Re: Evilzone supports the "Reboot" film!
« on: November 07, 2012, 01:01:33 am »
I know somebody already said this but seriously, C:\Windows\system32> taskkill on a MacBook? Come on !

2
Creative Arts / Re: The Evilzone album. Original compilation.
« on: July 16, 2012, 06:31:10 am »
God, I can't believe you brought this one back from the grave! I still l listen to it occasionally, man those were fun times...

3
Tutorials / Re: A collection of papers
« on: July 12, 2012, 04:51:31 am »
Very interesting... What can you tell me about the social engineering toolkit?Did anyone give it a read so far?

4
Hmmmm, thanks I already tried proxies and socks5 and got me banned for 4 hours,plus some insane lag .Next thing is to set up a VPN at home in Greece on my old PC.Thanks everybody.

5
Hey guys, long time no see  :D . Listen, in my residence we have the new uni network which blocks most of the good stuff.Personally I am interested in getting MMO connections out.I did a check with a very well known game(WoW) and I found out what ports it uses.Afterwards, what I did was to check if those ports were open in the network, as I expected they were not.So I started thinking, what if I re-routed the MMO connections to a port that is already open,more specifically port 22 (ssh) or the telnet port.I know this is possible I just don't have the knowledge necessary, I never really studied this kind of client/server interactions .
I did some more work with I2P networks and helped set up on for our mates at uni so they can access the net anonymously, so I am slowly getting there(even if I2P is totally a different subject). Could  anyone help me out here? I am representing the whole MMO crazed residence XD .I know neusbeer has some knowledge in these matters ,so any help from you buddy would be appreciated.
Thanks in advance,

Rafy

EDIT: forgot to add that we all use windows/bootcamp.

6
General discussion / Re: Beer!
« on: April 16, 2012, 05:57:19 pm »
Guys just brew your own, I do it and it's very easy and cheap! just go to this youtube channel http://www.youtube.com/user/CraigTube and you will learn everything you need to know.He is the best in my opinion.

7
General discussion / Re: 10 reasons not to buy an iPhone
« on: February 04, 2012, 09:13:08 am »
I would not agree with the camera. While the N8 does have a better camera (Nokia makes really nice phones), the iPhone tends to have better image quality than other smartphones regardless of pixel count. Images are grainier even on higher megapixel cameras.

Big point on not getting an iPhone is #2: Closed OS. You get almost no options for modification and no settings beyond simple notifications and appearances. Every time I use someone's iPhone I get frustrated by the inability to tweak anything worth tweaking.

About the jailbreaking.I think you need to do something very simiral with android to put roms on it,it just has a different name.This is not "allowed" by the companies that sell you the phone either.
One is rooting(getting root acces) , and the other is jailbreaking ,both banned by te companies that fabricate the phone.

8
General discussion / Re: Gonna Write A Book Complete Noob At It
« on: February 04, 2012, 09:05:08 am »
I have some experience with writing books and short novels.I wrote some fan fiction and published it on wattpad and I got lots of fans.Anyways, I started writing something truly my own and I have looked up the publishing process.Unless you have a contract with a publishing company then your best options are publishing it online via itunes or any other online service, or finding a self publishing website.What that means is print on demand.I think that amazon offers this service as well.This is all I can remember right now.

EDIT: Be careful if you are signing with a publishing company,cause in the contract many times it states that if you don't publish a second or third book with them then they ask you to pay back the signing bonus.

9
C - C++ / Re: [C]Question,Comparing a string to an array full of strings.
« on: January 09, 2012, 02:42:03 pm »
Thanks everybody.About scanf being insecure, that's what they taught us in university and that's what they want to see in the lab exam.Maybe , later they will introduce something new that works better. 

10
Hacking and Security / Re: Desktop or Laptops?
« on: January 05, 2012, 07:34:50 pm »
Well I completely agree with Ande.I love my water-cooled desktop but I could not bring that from greece to Italy.I bought my first laptop a few months ago and I can say I am doing almost everything I used to do on my PC(Almost everything cause it's a macbook pro,but it still hacks great ;) ) and I am satisfied a lot!!!!!!

11
C - C++ / [C]Question,Comparing a string to an array full of strings.
« on: January 04, 2012, 02:02:07 pm »
So as you can see , what I want to do is compare a string named "in" to an array of strings named "arr". Here is the code I have so far.
Code: [Select]

#include <stdio.h>
#include <string.h>


int main()
{
 
 char arr[3][128]={"chk","help","ext"};
 char in[128];
 int cm=1;
 int i;
 while(cm!=0)
 {
  printf(">Type a command and press return.\n");
  printf(">> ");
  scanf("%s",in);
  for(i=0;i<3;i++)
  {
    cm=strmcp(in,arr[i]);
  }
 }
 printf("%d\n", cm);
return 0;


}

The objective is to find the string inside the array,which in this case it's a command.If you know a better way to accomplish it instead of this one please mention it.
I know the compare part is totally wrong but that's what I came up with.I don't know if it's any help but I am doing everything in the Macintosh terminal using Nano and gcc.any help is appreciated.The program is text based , I dont know anything about GUI yet regarding C.


PS: almost forgot , I need another thing. How can I check using C if a website is online?I tried to find something on the net regarding ping.So far the only solution I have managed to come up with is to execute the native ping command of the mac/linux terminal inside my tool.

12
Operating System / Re: Windows 8 developers preview
« on: January 04, 2012, 12:50:50 pm »
To tell you the truth I prefet mac to windows.Of course I had to let go of some things, but ATM this is good,'cause I am at uni and I do not want any distractions(games) that windows offers, as well as frustration!!!
I have BT3 as well on bootcamp.But that's just my opinion.

13
General discussion / Re: Odd set of skills.
« on: January 04, 2012, 12:42:27 pm »
Love the idea! There are no weird skills,everything is useful at one point.This is why I recommend to everybody to read many books.If it looks interesting then read it, and maybe buy it(???IDK I usually find good books on demonoid.)

14
C - C++ / Re: [C Tutorial] Recursion
« on: December 18, 2011, 04:29:07 pm »
I know that that's why I put the "if" statement ,last time I didn't and the terminal screen was full of numbers. :P

15
C - C++ / Re: [C Tutorial] Recursion
« on: December 14, 2011, 03:24:19 pm »
arghhhhhhh!That's the one the prof told us too but it was too complicated (I never studied factorials) for me so i made up this example.

Pages: [1] 2 3 ... 5