The safety tag has no wiki summary.
-1
votes
1answer
29 views
Can we make EXE equivalent for PHP code so that the code can be protected? [duplicate]
Not sure if this has been discussed before.
I was looking for a solution that can protect the PHP code.
So even if I put the code on my client's server if they decide to put another developer on it ...
-1
votes
1answer
23 views
Safety, security and reliability. What is the difference? [closed]
Safety, security and reliability. What is the difference? Please short answers ;)
1
vote
2answers
55 views
Is this login structure safe from SQL injection? [duplicate]
I want to / am busy with completely re-writing my whole site. At this point I am working on what I call "members- and safety engine". I have been reading a lot about security and SQL injection, and it ...
3
votes
3answers
143 views
Is there a safe alternative to std::equal?
std::equal() is unsafe because the function cannot know whether it will overrun the length of the second container to be compared. That is:
std::vector< int > v( 100 );
std::vector< int > ...
0
votes
1answer
42 views
Sending email securely to an SMS service [closed]
I am looking into sending SMS through PHP to certain people via an SMS service called cmsms.dk.
The way it is done is that I send an email to their mail address like this:
...
4
votes
1answer
172 views
What is meant by a type being output-safe or input -safe?
My first encounter with the terms: output-safe, input-safe, output-unsafe and input-unsafe in the section Variance Safety of the C# Language Specification. I'm familiar with the concept of variance ...
0
votes
0answers
17 views
about security between the andriod pay plug-in and the server
I have a question about security between the andriod pay plug-in and the server.
i want to develop a pay plug-in to service some apps. these apps can call my pay plug-in. so there will be two pairs ...
1
vote
1answer
41 views
Save php variables safely
Hi i need to safe php value to some file no to database. I have this simple form:
index.php
<form action="settings.php" method="post">
<input type="text" name="width" value="">
<input ...
1
vote
1answer
121 views
Are my Greasemonkey scripts visible outside my PC?
Forgive me if this is a dumb question. I'm not familiar with how browser scripts are handled.
I'm writing a short Greasemonkey script that involves auto-logging me into a website, which of course ...
-3
votes
1answer
397 views
I don't want to be tagged - facebook-page [closed]
How can I make EVERYBODY unable to tag me on ANY photo instantly? I really don't want to be tagged on facebook! And I don't want to take an everyday's research for new photos i have been tagged on ...
-4
votes
3answers
63 views
How can i escape all of the punctuation in a string with PHP?
I'm new to creating websites using PHP, and I recently picked up a tip from a friend that if I escaped all of the data inputed from a form, then my website would be a lot less vulnerable to HTMLi and ...
1
vote
2answers
74 views
Is it safe to assume DayOfWeek's numeric value?
I have the day of the week stored in a database, where Sunday = 1, Monday = 2 etc.
In a query from the database, I need to convert the day to System.DayOfWeek.
According to MSDN:
The value of ...
1
vote
1answer
113 views
What is the best practice to make JavaScript's Typed Arrays “Endian Safe”?
JavaScript Typed Arrays pose a danger when it comes to endianness.
Suppose that you have a function like this:
var encodeFloat32 = (function() {
var arr = new Float32Array( 1 );
var char = new ...
0
votes
3answers
54 views
Checking safety in caller function
I've always been taught to design functions, objects and APIs in such a way that doesn't put the responsibility of your function's safety in the caller's hands. A bad example:
void caller()
{
int ...
1
vote
3answers
57 views
PHP are sessions safe
if($_POST['user'] == 'anita' && $_POST['pw'] == '123')
{
$_SESSION['username'] = $_POST['user'];
echo "Welcome, " . $user;
$loggedin = true;
}else
{
die('Log in details ...
2
votes
2answers
1k views
Are passwords stored in cookies?
Looking at gmail and facebook I was wondering where do they store your password and account info when you log off and you have the function "Keep me signed in" on.
I know they store it in cookies ...
0
votes
1answer
200 views
PDO “exception safety” and writing it to a log file PHP
I am writing a PDO wrapper and having this issue with catching exceptions,
I am trying to maintain exception safety practice,so I wanted to know how to catch an exception,writing it to a log ...
-2
votes
1answer
414 views
PHP registration code, trying to clean up my code [closed]
Alright i have now realized that i have left myself to voulnerable to attacks with basic coding, MINITECH has been helpinh me out with pdo for saftey. Now this register page is a lot and i as a basic ...
-3
votes
2answers
107 views
PHP login code, clean up [closed]
I would like to clean up my login script and help make it safe for my database. I am a basic coder and learned what I have from tutorials, so I guess my script needs some protections, any suggestions?
...
2
votes
3answers
143 views
Where's the safety bug in this double comparison
I was interviewed yesterday and this question arise:
public class Main {
public static void main(String[] args) {
// Code fragment must prints true if the double variables x and y are ...
1
vote
1answer
101 views
how to erase sensitive information shipped with iOS app
I am a new iOS developer and developing an app with costumed project which has no typical compile options like debug, release, distribute. So I have to config compile options of xcode by myself. That ...
0
votes
0answers
24 views
How much Core Data is safe from corruption caused by application crash?
As far as I know, SQLite is able to archive data safety from corruption when program crashes. They are describing how SQLite3 is safe from corruption on their official website.
Though Core Data is ...
0
votes
1answer
125 views
Test uploaded file using php system() function
I see in the thread:
How to check file types of uploaded files in PHP?
davr suggests the use of:
system("file -bi $uploadedfile")
to check the file type as a safety measure. porneL makes this ...
0
votes
3answers
246 views
What's the worst that could happen with while(true)?
I'm practicing C++ through Visual C++ Express and tutorials on Youtube. I made a calculator by following a cool video, but I didn't want the program to end right after you do one equation, so I ...
-1
votes
1answer
105 views
Run PHP from the Command Line (CLI) security vulnerabilities [closed]
Are there any security vulnerabilities on running PHP from the command line (CLI) on a dedicated server hosting? If so..what are they? Thanks in advance!
14
votes
5answers
469 views
safe C programming
I've noticed that my C compiler (gcc) will let me do stuff like:
#include <stdio.h>
main(){
short m[32768];
short y = -1;
short z = -1;
printf("%u\n", y);
m[y] = 12;
...
0
votes
1answer
60 views
Is there an API to check the safety of external URLS?
I am currently developing a link directory and was wondering if there is any way to check a URL's safety (e.g. Spyware / inappropriate content) in real time.
E.g. the user clicks the outgoing link ...
0
votes
0answers
123 views
Windows Service safely save key
i have created a Service, and made it run as LocalSystem, because i need it to run independently from the logged-in users, and the service needs to save a key received from a socket, and keep it on ...
-2
votes
1answer
111 views
Is this php safe to use? [closed]
in a blog system i am converting an image with a certain url to an iframe. This also generates a javascript but im not sure if this is really safe. So please help me out here.
...
1
vote
3answers
299 views
How to safely escape the input data in php for mysql
Which means, at the moment, are the safest for screening data in php to send them to the mysql database.
Thank, you )
-1
votes
2answers
2k views
How hackers, are hacking the websites? [closed]
So basically, few days ago one of my website clients, came to me, and told me that their database and website has been hacked (hackers somehow stole the md5 hashed password from database), logged in ...
1
vote
4answers
218 views
Updating UI from background thread - how do I know that my GUI is not disposed?
I have a background thread which updates the UI once it's done. I tried to be as safe as I can, so that I don't call GUI which has been Disposed.
void DoInBackground()
{
try
{
string ...
-2
votes
1answer
76 views
Detecting modifications of UDP or TCP packets
Is there some mechanism to detect that a UDP or TCP packet was modified by others?
Good methods are welcome.
0
votes
1answer
516 views
phonegap android play selected youtube animations for kids
Helo.
I am building an application for kids using Phonegap.
On Android I have the following problem: I have a sellection of animations and I want to play it. BUT I do not want kids to go on youtube ...
1
vote
3answers
287 views
Recognized devices system in php
Im making a social network and im trying to implement this feature where if the user is logged in from a different machine it will ask him to type in the password or identify his friends like in ...
0
votes
2answers
945 views
mysql/php - insert post serialized data to db with quotes signs, and retrieve it later without slashes - safety issue
I am putting a serialized data to database. Data comes from input field and it can be anything (string), also with quotes signs. Serialized data I encode with base64 to preserve serialize to result ...
1
vote
2answers
319 views
Source code safety best practices [closed]
What is the best practices for source code safety on a computer? Is there an encryption mechanism. How is the source control protected? If the computer storing the source code and the source control ...
1
vote
0answers
1k views
How to enable Thread Safety in ubuntu 10.04
I want to enable Thread Safety with php in ubuntu 10.04. How can I do this? Now I can see the output "Thread Safety => disabled" by using the command " php -i | grep "Thread Safety" "
Thanks
6
votes
2answers
319 views
How to systematically avoid unsafe pattern matching in Scala?
Consider the following broken function:
def sum (list : Seq[Int]) : Int = list match {
case Nil => 0
case head :: tail => head + sum(tail)
}
Here, the function was supposed to work with a ...
-1
votes
1answer
27 views
mod_rewrite rules to be checked… safety?
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
these are my code lines for my .htaccess file for an project of mine.
i just want to ...
1
vote
2answers
73 views
Website safe ruby script execution by user
suppose that i want to provide user possibility to put code into textarea and execute it for education purposes.
for example user fills input with print "hello"
he submits form -> code is processed ...
4
votes
4answers
716 views
Are C++ strings and streams buffer overflow safe?
If I use std::cin, std::cout and std::string, is there any possibility that someone will exploit the buffer overflow?
I ask this because I still see a lot of people that still use null-terminated ...
2
votes
4answers
75 views
JavaScript: What will break, and what will break it?
Potentially dangerous code below, line 2
Repeat: POTENTIALLY DANGEROUS CODE BELOW
var history = "";
for (start = 3; start = 1000; start += 1){
if(start % 5 == 0 || start % 3 == 0)
history += ...
1
vote
4answers
54 views
Making users able to submit code what to replace in php?
Hi i'm planning to make users able to submit some pieces of code (php,java,javascript c++, etc... whatever they want i mean).
so does anyone can suggest me the best practice to make it safety for my ...
7
votes
4answers
871 views
Is the pre-incriment operator thread-safe? (java)
I'm making a program in java that races a few cars against each other. Each car is a separate thread.
When cars complete the race, each one all calls this method. I've tested the method at varying ...
0
votes
5answers
156 views
What are the most important things to do to make a safe PHP/MySQL website?
This is a bit of an opinion question, but overall, what safety precautions would be ideal for a PHP-based website using a MySQL database? This site would include registration and login, and need to ...
1
vote
2answers
764 views
help me design my login.jsp page
I want user to provide login + password to login to my webapp. If he fails some times captcha comes to action.
I wonder what can I do, to remove java code from it, and to make it more readable and ...
2
votes
2answers
558 views
WPF DataBinding Thread Safety
I have a TextBox that's bound to a property that gets modified at a very rapid rate in a background thread. Is data binding in WPF thread safe? Will the data in the property or the TextBox ever get ...
6
votes
4answers
537 views
Does “DO-178B level A” prohibits optimizing compilers?
There is an "DO-178B" level A and level B certification for airborne systems. Does it prohibit using of optimizating compilers?
E.g. Some compilers will reorder instructions to get more performance. ...
1
vote
1answer
63 views
“Safety net” utilities (or tricks) for developing ASM under DOS?
In Windows, when programming in Assembly -- say, inline assembly in a .cpp file within Visual Studio -- the development environment protects me from my own stupid mistakes. If I clobber the ESP ...

