LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


View Poll Results: UNIX is better than WINDOWS
what?HELLO.i am UNIX. the best! 605 68.52%
whooa, wait a minute. Windows is BETTER than UNIX 48 5.44%
hoo-boy..i don't like both. 64 7.25%
errr...i don't know, what is UNIX afterall? 11 1.25%
windows?never heard of it... 155 17.55%
Voters: 883. You may not vote on this poll

Closed Thread
  Search this Thread
Old 08-23-2010, 06:21 AM   #4036
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723

Quote:
Originally Posted by Kenny_Strawn View Post
<removed>
iTunesSetup.exe???

Why did you post that here?

Last edited by XavierP; 08-24-2010 at 03:34 AM.
 
Old 08-23-2010, 12:34 PM   #4037
Kenny_Strawn
Senior Member
 
Registered: Feb 2010
Location: /usa/ca/orange_county/lake_forest
Distribution: ArchBang, Google Android 2.1 + Motoblur (on Motortola Flipside), Google Chrome OS (on Cr-48)
Posts: 1,791
Blog Entries: 62

Rep: Reputation: 56
Run it and find out... It says what it's not.
 
Old 08-23-2010, 12:40 PM   #4038
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Is it a windows executable? If so, I simply cannot run it.
 
Old 08-23-2010, 02:29 PM   #4039
dracolich
Senior Member
 
Registered: Jul 2005
Distribution: Slackware
Posts: 1,274

Rep: Reputation: 63
Quote:
Originally Posted by DrLove73 View Post
Windows kernel, at least original for NT was actually much better then Linux kernel in those days. Designers came from DEC (~20 of them) where they worked on new version of VMS until DEC pulled the plug on that project.

Windows 2000 was continuation of NT, with all of the positive sides. Interesting is that driver developers complained that writing drivers on NT was too hard, since they had to do it in the correct way, no shortcuts to make it easy and dirty. When Windows XP came out, most of the security layers where turned off to allow execution of Windows 95 programs and allowed mindless idiots to use it with out having to learn anything. It also allowed viruses and malware to plague and Security program developers to earn bundles of money.
That explains a lot. One of my IT coworkers and I have always felt Win2K was the best Window$ version as far as stability and security. XP felt like the beginning of both dumbing down the UI and M$'s focus on anti-piracy.
 
Old 08-23-2010, 02:44 PM   #4040
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Kenny_Strawn's executable is actually a 32-bit Linux executable (I tested it with the file command), not a Windows executable as he claims.

He sent me an email with the code and it looks like a fork bomb. I'm not sure if that's really it (I don't want to run it) but it's likely. He stressed me not to say it publically, but if it's really malicious code, I feel obligated to.

Last edited by MTK358; 08-23-2010 at 02:49 PM.
 
Old 08-23-2010, 06:25 PM   #4041
rkelsen
Senior Member
 
Registered: Sep 2004
Distribution: slackware
Posts: 4,453
Blog Entries: 7

Rep: Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556Reputation: 2556
Quote:
Originally Posted by MTK358 View Post
Kenny_Strawn's executable is actually a 32-bit Linux executable (I tested it with the file command), not a Windows executable as he claims.

He sent me an email with the code and it looks like a fork bomb. I'm not sure if that's really it (I don't want to run it) but it's likely. He stressed me not to say it publically, but if it's really malicious code, I feel obligated to.
This isn't the first time he's done something like this.

He obviously doesn't understand the nature of this forum, and should be banned for posting this if it is what you say it is.
 
Old 08-23-2010, 07:06 PM   #4042
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
This is the message, it was titled "Shhh! Source code to Windows executable in the MegaSuperThread":

Quote:
This is a message from Kenny_Strawn at LinuxQuestions.org ( http://www.linuxquestions.org/questions/ ). The LinuxQuestions.org owners cannot accept any responsibility for the contents of the email.

To email Kenny_Strawn, you can use this online form:
http://www.linuxquestions.org/questi...ember&u=513767

OR, by email:
mailto:kenny.strawn@gmail.com

This is the message:

[QUOTE=MTK358;4075266]Is it a windows executable? If so, I simply cannot run it.[/QUOTE]

[code]
#include <<unistd.h>

int main(void)
{
int x = 5;
while (x < 10)
{
fork();
x = x;
}
return 0;
}
[/code]

Please do not tell anyone!
Come on, it even uses Unix-specific headers!

And what's the "x = x" for?

Last edited by MTK358; 08-23-2010 at 07:08 PM.
 
Old 08-23-2010, 07:08 PM   #4043
MrCode
Member
 
Registered: Aug 2009
Location: Oregon, USA
Distribution: Arch
Posts: 864
Blog Entries: 31

Rep: Reputation: 148Reputation: 148
Yep, looks like a (poorly designed) fork bomb to me...

Quote:
And what's the "x = x" for?
It's pointless; x will retain its value unless you explicitly tell it to increment/decrement, so saying "x = x;" is doing nothing, ultimately.

I have no idea how Kenny thought this was supposed to work...

Last edited by MrCode; 08-23-2010 at 07:12 PM.
 
Old 08-23-2010, 07:35 PM   #4044
exvor
Senior Member
 
Registered: Jul 2004
Location: Phoenix, Arizona
Distribution: Gentoo, LFS, Debian,Ubuntu
Posts: 1,537

Rep: Reputation: 87
Quote:
Originally Posted by Kenny_Strawn View Post

Kenny I would take care in posting links to malicious code as I am sure the admins would not take too kindly to you posting. I have refrained from reporting this for now so please do not post more.
 
Old 08-24-2010, 04:02 AM   #4045
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
Fork bombs may be prevented:
http://www.cyberciti.biz/tips/linux-...r-process.html
http://en.wikipedia.org/wiki/Fork_bomb
 
Old 08-24-2010, 04:09 AM   #4046
MrCode
Member
 
Registered: Aug 2009
Location: Oregon, USA
Distribution: Arch
Posts: 864
Blog Entries: 31

Rep: Reputation: 148Reputation: 148
You might be able to do that on a *nix system, but what about on Windows (if someone wrote/successfully executed a proper Windows fork bomb)?
 
Old 08-24-2010, 04:42 AM   #4047
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
Actually, even in *nix...
Anyway there's always a way like a monitoring service.
 
Old 08-24-2010, 09:12 AM   #4048
cantab
Member
 
Registered: Oct 2009
Location: England
Distribution: Kubuntu, Ubuntu, Debian, Proxmox.
Posts: 553

Rep: Reputation: 115Reputation: 115
My guess is "x=x;" shuts the compiler up if it would otherwise complain about the infinite loop.
 
Old 08-24-2010, 10:20 AM   #4049
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Or he could have said:

Code:
int main()
{
    while (1)
        fork();
}
 
Old 08-24-2010, 10:31 AM   #4050
easuter
Member
 
Registered: Dec 2005
Location: Portugal
Distribution: Slackware64 13.0, Slackware64 13.1
Posts: 538

Rep: Reputation: 62
Quote:
And what's the "x = x" for?
Dunno...but judging from his past posts on programming topics I wouldn't try putting much effort into understanding the code he writes. Eg: This, this and this.

What I don't get is the pathological need to post malicious binaries on the forum and ask other users to run it, after being warned by moderators the first time.
 
  


Closed Thread

Tags
business, kenny's_playground, microsoft, register, technical, windows, worm, wtf



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Linux-windows Dual boot question when upgrading from windows 2000 to XP sarikalinux Linux - Newbie 1 03-09-2006 02:21 PM
Solution Dual Boot Windows & Linux [ALL DONE IN WINDOWS] No Linux terminology DSargeant Linux - Newbie 35 02-07-2006 03:29 PM
Solution Dual Boot Windows & Linux [ALL DONE IN WINDOWS] No Linux terminology DSargeant Linux - Newbie 4 11-10-2005 11:37 AM
Red Hat Linux 9 + Windows Server 2003 + Windows XP + Fedora in same domain wolfy339 Linux - Networking 5 03-02-2005 06:03 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 05:37 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration