Windows Coder Needed

N

need.a.codemaster

For a client of ours we are searching someone with the following
knowledge

Windows
Virusscanners
Spyware tools

We need a windows application that runs in the background and for
example changes the results from searchengines.

People download this in trade for services from our side. So we DO NOT
need scripts that automatically install applications, or the
application.

You can get payed on a project base or an hour base.

We pay good money, you make good software. Also we would like you to
keep updating this tool (and get payed ofcourse) if possible.

You can contact us trough

(e-mail address removed)

Thanx!

And ps. If your name is Neo of Tr!n!ty of H@ckz0r..... please don't
waste your and our time ;)
 
A

Alf P. Steinbach

* (e-mail address removed) spammed in [comp.lang.c]:
For a client of ours we are searching someone with the following
knowledge

Windows
Virusscanners
Spyware tools

We need a windows application that runs in the background and for
example changes the results from searchengines.

Malware, in other words.

People download this in trade for services from our side. So we DO NOT
need scripts that automatically install applications, or the
application.

You can get payed on a project base or an hour base.

We pay good money, you make good software. Also we would like you to
keep updating this tool (and get payed ofcourse) if possible.

You can contact us trough

(e-mail address removed)

Thanx!

CC: (e-mail address removed)
 
T

Tom St Denis

Alf said:
Malware, in other words.

Sounds like the "CoolWebSearch" virus. If they were smart they'd just
modify that instead of writing a virus from scratch...

Tom
 
T

Tom St Denis

Gernot said:
Right. Best would you you give them a few hints on ho to do that and
what to pay attention to, so it'll spread wider than the original.
Tomorrow we're all busy visiting our stupid friends who opened the
"your_message.pif" for the 1000th time.

I run Gentoo Linux as a non-root user.

I only use Windows for work where a virus is basically a free day off.
:)

Tom
 
G

Gernot Frisch

Sounds like the "CoolWebSearch" virus. If they were smart they'd
just
modify that instead of writing a virus from scratch...

Right. Best would you you give them a few hints on ho to do that and
what to pay attention to, so it'll spread wider than the original.
Tomorrow we're all busy visiting our stupid friends who opened the
"your_message.pif" for the 1000th time.
 
L

lovecreatesbeauty

Tom said:
I run Gentoo Linux as a non-root user.

I only use Windows for work where a virus is basically a free day off.
:)

You're afraid of being a root user?
 
R

Richard Heathfield

lovecreatesbeauty said:
Tom St Denis wrote:

You're afraid of being a root user?

No. He's bright enough to realise how astoundingly stupid it is to use the
root account except when you really, really have to.
 
G

Gernot Frisch

Richard Heathfield said:
lovecreatesbeauty said:


No. He's bright enough to realise how astoundingly stupid it is to
use the
root account except when you really, really have to.

Which is almost every minute on Windows....
 
M

Michael Wojcik

Which is almost every minute on Windows....

Nonsense. I've been developing software professionally on Windows,
using a non-administrative account for nearly everything I do, since
NT 4.0 was released. People who do everything on Windows using an
administrative account simply haven't bothered to learn how to use
the OS.

Prior to the introduction of the "runas" command, it was useful to
have something like Microsoft Services for Unix installed, so that
you had some equivalent to Unix's "su" and could run individual
commands with a different user's authority. Now that capability is
included with the base OS, and there is no excuse for working as an
administrative user where it's not necessary.

I frequently hear that "some applications, such as Microsoft Office,
don't work if you're not an administrator". I use MS Office - I
loathe it, but it's a company standard - every day, and I have never
had it refuse to do what I needed it to do simply because I was using
a non-administrative account. Because it's full of bugs and
generally brain-dead, yes, but not because I'm not running it as an
administrator.

Windows has many problems, but this is not one of them.
 
G

Gernot Frisch

Nonsense. I've been developing software professionally on Windows,
using a non-administrative account for nearly everything I do, since
NT 4.0 was released. People who do everything on Windows using an
administrative account simply haven't bothered to learn how to use
the OS.

Prior to the introduction of the "runas" command, it was useful to
have something like Microsoft Services for Unix installed, so that
you had some equivalent to Unix's "su" and could run individual
commands with a different user's authority. Now that capability is
included with the base OS, and there is no excuse for working as an
administrative user where it's not necessary.

I frequently hear that "some applications, such as Microsoft Office,
don't work if you're not an administrator". I use MS Office - I
loathe it, but it's a company standard - every day, and I have never
had it refuse to do what I needed it to do simply because I was
using
a non-administrative account. Because it's full of bugs and
generally brain-dead, yes, but not because I'm not running it as an
administrator.

Windows has many problems, but this is not one of them.

It's not a windows problem. It's the problem of specialist in any area
but programming, who write a good program (good functionality - bad
coding and GUI) that refuse to work as non-admin. Most common mistakes
are:
-write files (temporarily) to the program's directory
-store information in an .ini file (in program or windows directory)
-write to HKLM instead of HKCU
....

There's no problem with Windows these days - it's the coding style of
old school programmers. With Vista a lot will change - at least they
say so...

-G.
 
M

Michael Wojcik

[QUOTE=""Gernot Frisch said:
Nonsense. I've been developing software professionally on Windows,
using a non-administrative account for nearly everything I do, since
NT 4.0 was released. ...

Windows has many problems, but this is not one of them.

It's not a windows problem. It's the problem of specialist in any area
but programming, who write a good program (good functionality - bad
coding and GUI) that refuse to work as non-admin.[/QUOTE]

I have never encountered this problem, in all of my years of using
Windows (which long preceed the introduction of any security
mechanisms in Windows, by the way). That is, I have never seen a
"good" (qua useful) Windows application that could not be run by a
non-administrative user, except for utilities which performed
administrative actions (and so correctly required administrative
privilege).

I have rarely encountered bad Windows applications that thought they
required administrative privilege, but in most cases that could be
worked around; and in the remaining cases they weren't worth using
anyway.
Most common mistakes are:
-write files (temporarily) to the program's directory

If the application is useful, set a less-restrictive ACL on the
directory and more-restrictive ones on the program files.
-store information in an .ini file (in program or windows directory)

Set a less-restrictive ACL on the .ini file.
-write to HKLM instead of HKCU

Set a less-restrictive ACL on the registry key, if it's private to
the program. If it's used by other software, then yes, this can be
a problem - but as I said, I've *never* seen it in any useful
software, which makes me wonder how "common" it is.

This is the whole purpose of ACLs - fine-grained access control.
There's no problem with Windows these days - it's the coding style of
old school programmers.

Certainly, that is a problem.

--
Michael Wojcik (e-mail address removed)

_
| 1
| _______ d(cabin) = log cabin + c = houseboat
| (cabin)
_| -- Thomas Pynchon
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,484
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top