473,804 Members | 3,412 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Terminal Server: Enough included w/MSDN?

I'd like to dabble in Terminal Server enough to see if I can get some of my MS
Access apps to run through it.

I've got the MSDN subscription. Is there enough there for a real-world
implementation?
--
PeteCresswell
Nov 13 '05
28 2454
Note: you can change the port. 1433 is just the default value.
1433 is fine if you WANT everybody to be able to assume the default
value.

(david)

"Trevor Best" <nospam@localho st> wrote in message
news:40******** **************@ auth.uk.news.ea synet.net...
PeteCresswell wrote:
Besides which, the last thing you want is port 1433 open to all and
sundry. If it's open on the net, it's not a matter of if, it *will* be
hacked.

I don't even know what port 1433 is.... but could it be open by
default on a PC that's running SQL Server/Developer? The PC that has
that on it seems to attract a steady stream of SQL Server Worm
Propogation attempts.


Port 1433 is what SQL server uses so yes. I trust your PC is firewalled?

--
Error reading sig - A)bort R)etry I)nfluence with large hammer

Nov 13 '05 #11
"(Pete Cresswell)" <x@y.z> wrote in
news:8j******** *************** *********@4ax.c om:
RE/
Your firewall doesn't block port 1433 at the network boundary?


Dunno if it blocks it or where, but it does appear to catch a lot
of what it calls W32_SQLEXP_Worm _Propogation.

Norton Personal Firewall.


The default state for any firewall should be 100% of incoming ports
closed. Then you may need to open up a few for specific tasks.

If you have a proper software firewall you can control who can
connect. For SQL Server, you could limit it to your local LAN's IP
address space, and then external machines wouldn't be able to
connect.

Of course, if the worm connection is coming from a machine on your
LAN, that won't get you anything.

Another thing to do is to use a non-standard port for SQL Server.
You'll have to specify it in your connection strings, but that
shouldn't be that big of a deal.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #12
"Rick Brandt" <ri*********@ho tmail.com> wrote in
news:2m******** ****@uni-berlin.de:
"Tony Toews" <tt****@teluspl anet.net> wrote in message
news:cg******** *************** *********@4ax.c om...
Trevor Best <nospam@localho st> wrote:
>> And, yes, guys, I know that I could connect to my
>> SQL Server instance over port 1433 and don't need Terminal
>> Services but I am >> a poor Access developer and even worse Systems Admin.
>
>Besides which, the last thing you want is port 1433 open to all
>and sundry. If it's open on the net, it's not a matter of if, it
>*will* be hacked.


I've read this elsewhere as well. But if you have the latest
patches

installed, and
assuming there aren't unknown exploits out there, how can it
hurt?

Please be more
specific.


I've often wondered about this myself. The conventional wisdom
seems to be...

1) If you need real security use a database engine like SQL Server
instead of Jet.
2) Don't leave your SQL Server port exposed or you'll get hacked.

One of the above statements must be wrong, no?


Well, one of the problems is that, out of the box, the SA account
has no password (or maybe it's a password that everyone knows), so
anybody can connect as administator to any default installation.
Maybe recent SQL Server patches undo that. I don't know.

But I would do several things if I needed to run SQL Server on my
network:

1. set a strong password on the SA account.

2. run it on a non-standard port.

3. control who can connect to it.

The latter may be most easily done with a proxy server, or via VPN
connections. Either of those solutions would mean that the random
worm would not be able to connect.

Of course, you alsc can't really depend on a patched machine staying
in a "safe" condition. We all know perfectly well that repairing or
re-installation an application can revert you back to unpatched
versions of the software.

So, depending on the "security" of knowing that you've patched your
machine without doing something to prevent that "security" from
being tested is unwise.

Besides, there are probably plenty of vulnerabilities yet to be
found, and you'll still be vulnerable to those. Doing those 3 steps
will probably prevent any of them from getting you.

Probably.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #13
david epsom dot com dot au wrote:
Note: you can change the port. 1433 is just the default value.
1433 is fine if you WANT everybody to be able to assume the default
value.


Not much defense against a port scanner, it'll find the open port.

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 13 '05 #14
Tony Toews wrote:
Trevor Best <nospam@localho st> wrote:

And, yes, guys, I know that I could connect to my
SQL Server instance over port 1433 and don't need Terminal Services but I am
a poor Access developer and even worse Systems Admin.


Besides which, the last thing you want is port 1433 open to all and
sundry. If it's open on the net, it's not a matter of if, it *will* be
hacked.

I've read this elsewhere as well. But if you have the latest patches installed, and
assuming there aren't unknown exploits out there, how can it hurt? Please be more
specific.


Erm... Hacked. As in some unauthorised person now has access to your
data, can read confidential information, blow your data away, etc. A
patch isn't going to stop that.

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 13 '05 #15
David W. Fenton wrote:

1) If you need real security use a database engine like SQL Server
instead of Jet.
2) Don't leave your SQL Server port exposed or you'll get hacked.

One of the above statements must be wrong, no?

Well, one of the problems is that, out of the box, the SA account
has no password (or maybe it's a password that everyone knows), so
anybody can connect as administator to any default installation.
Maybe recent SQL Server patches undo that. I don't know.


SP3 strongly recommends a password, but doesn't enforce it.
But I would do several things if I needed to run SQL Server on my
network:

1. set a strong password on the SA account.
Or disable it, SQL Server has two security holes^h^h^h^h^h methods,
Windows Authentication and Standard, you can disable standard so any
brute force attacks on the sa account will be futile. You cannot disable
the Windows integrated authentication but to get into SQL Server would
require someone to log onto your domain.
2. run it on a non-standard port.
This will only fool a casual cracker, if there is such a thing. A
determined one will use a port scanner, if you say put SQL Server on
port 80 (usually http) then the cracker will notice that no web service
is running on port 80 and may try something else.
3. control who can connect to it.
By far the best method.
Besides, there are probably plenty of vulnerabilities yet to be
found, and you'll still be vulnerable to those. Doing those 3 steps
will probably prevent any of them from getting you.

Probably.


Bit like any security, what did Qui-gon Jinn say in Ep1? There's always
a bigger fish.

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 13 '05 #16
Rick Brandt wrote:
I've often wondered about this myself. The conventional wisdom seems to
be...

1) If you need real security use a database engine like SQL Server instead
of Jet.
2) Don't leave your SQL Server port exposed or you'll get hacked.

One of the above statements must be wrong, no?


No. Do banks have their vault doors inside or outside the building?

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 13 '05 #17
"Trevor Best" <nospam@localho st> wrote in message
news:40******** *************** @auth.uk.news.e asynet.net...
Rick Brandt wrote:
I've often wondered about this myself. The conventional wisdom seems to be...

1) If you need real security use a database engine like SQL Server instead of Jet.
2) Don't leave your SQL Server port exposed or you'll get hacked.

One of the above statements must be wrong, no?


No. Do banks have their vault doors inside or outside the building?


Bad analogy. No bank is going to claim that the reason your money is safe
is because of the lock on the front door. Either the vault is secure or it
isn't.

If server-based engines provide "real" security then open ports should not
matter. If they matter then they don't provide real security either, just
security that is "somewhat better".

Following the argument that accessible ports are a security hazard then my
data is vulnerable to anyone who is allowed access to the LAN. Perhaps
that is the technical reality, but I just wonder if the people selling
these databases pitch it that way. "As long as you close ports to the
outside world only your employees will be able to break our security".
--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com

Nov 13 '05 #18
Trevor Best <nospam@localho st> wrote in
news:40******** *************** @auth.uk.news.e asynet.net:
David W. Fenton wrote:

2. run it on a non-standard port.


This will only fool a casual cracker, if there is such a thing. A
determined one will use a port scanner, if you say put SQL Server
on port 80 (usually http) then the cracker will notice that no web
service is running on port 80 and may try something else.


Why would anyone be silly enough to put it on port 80??!

No, using a non-standard port won't help with exploits that scan all
ports, but *most worms don't do that* -- they scan a small number of
ports, so you're at least protecting yourself from the dumb worms,
and I think that's worth something.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #19
"Rick Brandt" <ri*********@ho tmail.com> wrote in
news:2m******** ****@uni-berlin.de:
Following the argument that accessible ports are a security hazard
then my data is vulnerable to anyone who is allowed access to the
LAN. Perhaps that is the technical reality, but I just wonder if
the people selling these databases pitch it that way. "As long as
you close ports to the outside world only your employees will be
able to break our security".


That's pretty much a standard part of my Access database application
security pitch. I don't believe in undertaking superhuman efforts to
secure an Access application because the greatest danger is from the
people who are *supposed* to have full access to the application and
its data.

Most people think the danger is out there somewhere, in the wilds of
the Internet. I inform them that perimeter maintenance is important,
but the people who are most dangerous are the ones in whom you've
placed the most trust, not the other way around.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 13 '05 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
2892
by: Justin Lazanowski | last post by:
Cross posting this question on the recommendation of an I have a .NET application that I am developing in C# I am loading information in from a dataset, and then pushing the dataset to a grid, or other controls depending on the particular form. This application is setup with one MDI parent calling MDI children with the exception of one Modal form (the report viewer). When I run the application and run one of the screens that pulls...
2
12678
by: Mahir Karabacak | last post by:
Hi all, I need to write an server application which will work Windows Remote Desktop Server (may be Terminal server). But the difference, insted of sending whole windows desktop messages to client it will save all messages in a file. At the same time, user desktop will still be active on local computer. I had just begun to resource so I dont have so much knowladge about this topic! So I hope you can help me before starting. For this...
5
2134
by: Nikolay Petrov | last post by:
Hi. I need to use Windows Terminal Server APIs in my app. The only sample code i've found is written in VB6, but I understand VB .NET. I've found a sample app which contains all the code I need, but when converted to VB .NET it won't build because if many errors in code, which i can't fix. Can someone help me? Can someone rewrite it in VB .NET? The sample app can be found at:
1
3774
by: =?Utf-8?B?QW50amU=?= | last post by:
I need product keys for Terminal Server Windows Server 2008 access (CALs) under MSDN - TSLM Service said they cannot provide product keys for the access.
0
9707
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9585
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10323
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10082
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7622
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6856
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5525
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4301
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3823
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.