Tagged Questions
The protect tag has no wiki summary.
13
votes
4answers
609 views
Delphi: Prevent method names from appearing in exe
I am writting some class, that is for handling security in my exe (checking serials, trial date check etc). After I compile exe even in Release build with all debug and RTTI generation turned off, ...
9
votes
8answers
9k views
Protect flash video from download/right protect
Is it possible to protect flv files from download? I'd like to protect my files from download but I don't have the money for a streaming server which I think provides some sort of protection. The ...
7
votes
6answers
757 views
Protect embedded password
I have a properties file in java, in wich i store all information of my app, like logo image filename, database name,database user and database password.
I can store the password encrypted on the ...
5
votes
2answers
62 views
Protect row from deletion in MySQL
I want to protect some rows from deleting and I prefer to do it using triggers rather than logic of my application. I am using MySQL database.
What I came up with is:
DELIMITER $$
DROP TRIGGER ...
4
votes
2answers
548 views
How to crypt or hide a string in Delphi EXE?
I am currently developing an application in Delphi, in which I have to hide (obfuscate) a string in source code like str := 'Example String'.
Why ? Because if I open the EXE in text editor and search ...
4
votes
8answers
951 views
How to protect the source of a delphi app?
How could I protect my delphi app from being decompiled?
I know there are some software like themida that I think will do that but then the protected exe trigger the antivirus.
3
votes
1answer
71 views
Clearcase protect -chmod +x recursively all *.exe
I am trying to recursively change all .exe in a directory.
I did a bit more digging before posting and ended up finding what I needed. Will post with my answer just on case anyone can used this ...
3
votes
1answer
146 views
Wrap and Protect exe
Im working on a copy protection software and Im trying to create a wrapper around any kind of executables (managed and unmanaged), this wrapper will then try to execute the wrapped exe without writing ...
3
votes
2answers
119 views
How do I protect against XSS in CSS?
I'm looking at allowing users of our online system to control their own .css files with us simply including them on a user by user basis.
What is the best way to avoid any potential XSS attacks in ...
3
votes
7answers
2k views
Protect php script that receive paypal IPN notifications! [Solved]
In my website I've integrated a php script that receive an IPN notification and send a license key to the customer! This script is in a folder with other 2 php files required by the php script ... how ...
3
votes
2answers
1k views
Protected Pages in MediaWiki
I am currently using MediaWiki as a documentation website, with login authenticated by LDAP.
However, we have hit a snag. Certain pages contain sensitive information. For example links that say ...
2
votes
1answer
210 views
How to protect Sikuli source and make it an standalone executable file?
I have made an application from Sikuli IDE which clicks on a website links. Now i want to hide its source and compile it as an standalone exe file for my friends.
Please let me know how to do it.
...
2
votes
6answers
350 views
Java - Securely store user account details required for use in code
I am building an application that interacts with a web service. In order to use that web service I have to login using my actual username and password - there is no other way to use the service.
I ...
2
votes
1answer
145 views
Embed and protect some “text” files in my application?
My c++ application use some "text files", theses files are very important and I need to protect their content to be viewed/decrypted/extracted/dissassembled...
Also, if possible I would like to embed ...
2
votes
6answers
172 views
Protecting assembly from hacker
I have a console application references assembly A. I want to ensure that the application will not run if A.dll is tampered or replaced.
One option is to use strong-name signing. But do I need to ...
2
votes
3answers
136 views
Section of website to be protected by a login
I have a section of my website where I will have forms. I only want people who have registered with the site to be able to use these forms so that I only have serious customers using them.
So what i ...
2
votes
4answers
164 views
How to secure an API written in .Net
This is a variation on an existing question in SO about securing/obfuscating .Net applications in general.
I'm developing an API in C# that includes some algorithms I'm keen to protect.
I ...
1
vote
2answers
59 views
Add on to: How do I protect my Python codebase so that guests can't see certain modules but so it still works?
How do I protect my Python codebase so that guests can't see certain modules but so it still works?
My question is an add on question posted on the page above.
If there are two svn directories; ...
1
vote
1answer
156 views
Protect access phone's settings with a password programmatically?
Is it possible to implement an application that programmatically protects the access to a phone's "Settings" with a password ?
1
vote
4answers
87 views
Is there a problem with this script?
I am building an ajax/php script and I have come up with something to protect the ajax file from external access, by that I mean to restrict the execution of the script from another server (and ...
1
vote
3answers
139 views
creating a thing like key activation or license for web applications in PHP?
i am here again
i wanna to create a script using PHP and sell it,now how can i make a system like key activation in windows apps that protect my script?
or a license system.
plz help perfect.
...
1
vote
3answers
112 views
How to protect download URLs to be stolen with PHP?
I have several programs linked and hosted on my server. I need to protect the URLs from to be stolen and placed on other sites because they'll use my bandwidth.
How can I do that in PHP ?
Should I ...
1
vote
2answers
225 views
C# - winforms - hiding my server ip variable
what's the best way to hide/protect a string that contains my server IP address in C# winforms application?
here is the thing, in order to activate the application I created, the user should fill up ...
1
vote
2answers
163 views
global.asax Protect Page
How can i Protect a Page in Global.asax to prevent directly acces like http://yourapp/Login.aspx and than you need to log before you can get through that page.
1
vote
2answers
232 views
GIF ONLY visible in IE BUT not in Firefox, Photoshop or any other app
aHello everybody,
please visit the following page with Firefox or any other browser AND Internet Explorer:
http://uni-ka.the-jens.de/html/mathe4/mase2.htm
You'll see the pictures (formulas) are just ...
1
vote
3answers
92 views
Protect a generate image with php
I'm having a problem here and I think people here can help me.
I have a file that generates an image, ler.php, and the file that loads the images through a while, the carregar.php
I need to let the ...
1
vote
2answers
43 views
protecting java data (saving items to a secure file)?
I couldn't think of a very good name for a title, there is probably a technical term for what I want to do but I am not aware of it. I am making a simple sort of text game to mess around with in java, ...
1
vote
2answers
85 views
Protect data within single program
In Windows would it be possible to protect data within a single program? I have been looking into CryptProtectData but whis is by user basis I would like something simular but on program basis. My ...
1
vote
1answer
219 views
How can I replace \r\n with a line break when I echo?
I protect my string using this code to insert it into the database:
function protect($string){
$string = mysql_real_escape_string($string);
return $string;
}
I then unprotect is using this code ...
1
vote
1answer
624 views
password protect /backoffice folder in nginx
I've been breaking my brain on this issue for days.
I am trying to password protect a folder called "backoffice".
I would like to password protect the folder and everything below it (including php ...
1
vote
2answers
210 views
Protecting files in git repository
I have a central repository with a subset of files that I want to protect from been changed (by pushing) from another users. If I add this files to .gitignore they would not be cloned.
Is it possible ...
1
vote
5answers
223 views
How do I prevent other programmers from wrapping my assembly?
Can someone tell me what the best approach to protecting my component DLLs in .Net?
I've written a few DLL components which will be publicly available. They will be licensed accordingly but I want to ...
1
vote
2answers
685 views
Why doesn't locking a cell in a protected worksheet in Excel prevent selection?
I'm working on a protected Excel spreadsheet and ran into a problem with cells that I've programmatically locked that are still selectable. I can't click on them directly to select them, but if I ...
1
vote
1answer
842 views
Protect.exe for AutoLISP code protection
I am developing an architectural LISP-based package for a member of the IntelliCAD consortium. Per recommendations I have found on websites, I have used the Kelvinator to deformat and disguise some ...
0
votes
1answer
38 views
Protecting XML on android
I'm making in house application that download data via xml files from external server. This server is under my control but I don't want the XML file that it present to be available to anyone but the ...
0
votes
1answer
20 views
protect admin devise route
I have this in my routes.rb
devise_for :admins
If I put in url:
http://localhost/admins/sign_in
I get the sign_in form for admin model.
I have check this for camouflage this form, to:
...
0
votes
1answer
41 views
Codeigniter Tank_auth library | How to protect controllers and show login page if user not logged in
I have successfully implemented the tank auth library to my codeigniter project and would now like to protect my 'members' controllers.
How can I stop users that have not registered and logged in ...
0
votes
2answers
115 views
C++ API : license management to protect a software
I'm searching for a C++ and open source library to protect a commercial software again crack etc...
Do you know one ?
Thanks
0
votes
1answer
40 views
Password protected directory not letting inner site access it
I seem to have a tough time here.
I'm making a social network which is located at http://studnet.x10.bz. To make a long essay short, I have a users folder located in public html which contains users, ...
0
votes
1answer
66 views
SVN - How to keep core source code confidential and give freelancers access to modules only
I'm developing a modular propietary PHP application. As a project leader and owner, I want to keep the core engine confidential. The freelancers will work on modules (say 1 freelancer for 1 module ...
0
votes
0answers
26 views
Protect my word document
The answer to this question may seem simpler than I thought. But still the fact, is I need help in this!
I have a word document which i will share to the outside world. I want to keep this document ...
0
votes
3answers
109 views
PHP to protect PDF's and DOC's
I am trying to provide .pdf and .doc files to authorized users on a website. The user can only see the file selection page when logged in but this doesn't prevent an unauthorized user from viewing the ...
0
votes
6answers
115 views
Restrict access to a webpage with jQuery
Is there a way to restrict access to a specific webpage such as http://www.example.com/subpage with jQuery?
I know there are many other feasible ways to accomplish that via PHP and .htaccess but in ...
0
votes
1answer
74 views
P4 protect rights for subfolders
I want to make certain folder read only for the developers while some subfolders in that folder as write also.
eg. There is a Folder structure:
Meeting/Jan/DevInfo/
Meeting/Feb/DevInfo/
...
0
votes
3answers
147 views
How to protect a java application from reverse-engineering or code stealing?
I want to reveal my desktop java application to public, but I'm no't sure how to protect it from reverse-engineering or source code stealing?
Is it possible to convert the application to an exe file? ...
0
votes
4answers
470 views
How to Protect an Exe File from Decompilation
What are the methods for protecting an Exe file from Reverse Engineering.Many Packers are available to pack an exe file.Such an approach is mentioned in ...
0
votes
1answer
35 views
Protect Groovy/BeanShell Generated Classes
I'm planning to embed groovy/beanshell in my app but I'm concerned about protecting the script and any dynamically generated classes from been viewed and modified by users to access my app codes. The ...
0
votes
0answers
26 views
protecting app I've written
I've written a small app with python/wxpython and would like to sell it.
I'm looking for help and advise on adding a software key or copy protection.My app is targeted at a fairly small industry ...
0
votes
1answer
86 views
Is It Possible To Prevent a PDF From Opening On Another Computer?
I'm trying to sell a PDF file. I'm going to burn it and sell it on a CD locally. My fear is that one of the buyers will upload it online and make it available for free to the others. I was wondering ...
0
votes
1answer
302 views
Programmatically protect media files on sdcard of Android Phone
my app has to download some media files in runtime. I found that i can store them in internal storage so that only my app can access them. The problem is internal storage is limited. Now i want to ...