3
votes
4answers
89 views
How to protect a database?
There is a website with a server database. I'm building a desktop application which uses data from one of the tables. Hacker can just take password from assembly.
How can I protec …
5
votes
7answers
90 views
Performance-oriented way to protect files on PHP level?
I am looking for some input on something I have been thinking about for a long time. It is a very general problem, maybe there are solutions out there I haven't thought of yet.
I …
0
votes
4answers
49 views
How do I upload data to Google App Engine periodically?
I'm writing an aggregation application which scrapes data from a couple of web sources and displays that data with a novel interface. The sites from which I'm scraping update every …
0
votes
0answers
21 views
How to hide version linux when scan server port? [closed]
Hi,
How to hide version linux when scan server port?
when i nmap'ed(nmap -A -T4 192.168.40.12) ip server from the outside, the one shows:
Starting Nmap 4.62 ( http://nmap.org ) …
1
vote
1answer
34 views
Encryption: how to have 1 iv despite multiple fields
I've been stuck trying to arrive at a best solution for this for a while. I know that an initialization vector has to be unique for each item being encrypted. So if I'm encrypting …
69
votes
87answers
6k views
What’s the worst security hole you’ve ever seen?
Subject says it all, probably a good idea to keep details basic to protect the guilty.
See also another question about what to do once you find a security hole.
0
votes
0answers
12 views
How to install source rpm(src.rpm) in fedora?
Hi,
How to install source rpm(src.rpm) in fedora?
When i try to rebuild spec file after install package(for example openssh) with sample command :
rpmbuild -ba openssh.spec
I …
2
votes
1answer
37 views
Integrating Google AppEngine with a Thick Client
I want to make a multi-user client-server solution with Java Swing thick client as a front-end and Google AppEngine (Java one) as a back-end.
The problem is that GAE provides only …
18
votes
13answers
441 views
techniques for obscuring sensitive strings in C++
I need to store sensitive information (a symmetric encryption key that I want to keep private) in my C++ application. The simple approach is to do this:
std::string myKey = "mysup …
0
votes
1answer
23 views
WCF Security - Client Authorization
Hello there,
I need help on securing my WCF Service so that only authorized users can make a call to service methods.
The WCF Service is configured with wsHttpBinding and is hos …
0
votes
3answers
21 views
Email and Reusable Token URLs
I'm building a site that offers functionality to users without requiring them to register. The idea is to send an email to the specified address containing a link with a token. Tha …
1
vote
5answers
124 views
How can I check a url is publicly accessible?
I have a web application that you can use to import information from another site by giving it a url. It's been pointed out that you could use this feature to access a private site …
1
vote
1answer
19 views
Flash security error - Twitter API
Hey folks,
I'm trying to hit the Twitter API in my Flash application. It works in the local Flash IDE, but doesn't work when I upload it to my server. I'm getting this error:
E …
0
votes
2answers
18 views
How to create a self signed certificate with the private key inside in a file in one simple step ?
I'd like to generate a certificate for development purpose but, I don't want to install the certificate in the store.
makecert with the switch -pe doesn't create the private key i …
1
vote
2answers
74 views
How insecure is / replacement for tmpnam?
I considered using tmpnam to set the output file name of a QPrinter. But the Python documentation recommends against using it.
os.tmpnam()
Return a unique path name that i …
