Tagged Questions

Verification checks whether a product complies with specifications and further fixed conditions.

learn more… | top users | synonyms

21
votes
7answers
9k views

Validate SSL certificates with Python

I need to write a script that connects to a bunch of sites on our corporate intranet over HTTPS and verifies that their SSL certificates are valid; that they are not expired, that they are issued for ...
14
votes
4answers
507 views

How can I verify lock-free algorithms?

In theory, it should be possible to at least brute force a verification of a lock-free algorithm (there are only so many combinations of function calls intersecting). Are there any tools or formal ...
11
votes
12answers
363 views

Account verification: Only 1 account per person

In my community, every user should only have one account. So I need a solution to verify that the specific account is the only one the user owns. For the time being, I use email verification. But I ...
10
votes
5answers
1k views

Hilbert System - Automate Proof

I'm trying to prove the statement ~(a->~b) => a in a Hilbert style system. Unfortunately it seems like it is impossible to come up with a general algorithm to find a proof, but I'm looking for a ...
7
votes
1answer
270 views

How to check if a class file version 50.0 (Java 6) has been preverified?

I "upgraded" some jar files from class file version 49.0 to 50.0 with ProGuard. Because preverification is optional with version 50.0, I wonder if there is a way to check if the class file has really ...
7
votes
1answer
776 views

Google App Engine on Google Apps Domain

I'm having trouble getting my domain pointed to my website hosted with google app engine. Here's the background... take care to separate the concepts of "google apps" (domain hosting, email, etc.) and ...
7
votes
2answers
951 views

How to verify a mail has been sent when using Zend_Mail?

I am using the Zend framework to send mail. Once the config is done and the code written it all boils down to one call: $Mail->send($Transport) How can i check that this mail has been sent ...
7
votes
7answers
4k views

How can I get a regex to check that a string only contains alpha characters [a-z] or [A-Z]?

I'm trying to create a regex to verify that a given string only has alpha characters a-z or A-Z. The string can be up to 25 letters long. (I'm not sure if regex can check length of strings) Examples: ...
6
votes
3answers
360 views

Clarifications on Bytecode and objects

I am writing a Bytecode instrumenter. Right now, I am trying to find out how to do that in the presence of objects. I would like some clarifications on two lines I read in the JVMS (section 4.9.4): ...
6
votes
3answers
546 views

Types in Bytecode

I've been working for some time on (Java) Bytecode, however, it had never occurred to me to ask why are some instructions typed? I understand that in an ADD operation, we need to distinguish between ...
6
votes
5answers
832 views

What's the probability that X *consecutive* bits in an array of N bits is set to 1?

I'm trying to code a simple, sufficiently accurate filter for validating a piece of hardware in an RTL simulation. We're simulating the randomness inherent in a chip's flip-flops, by randomly ...
5
votes
4answers
187 views

Reflections for C language?

The question title might be misleading when read out of context. Let me first explain what I am trying to build. I am building a script which will take 100s of very simple C programs written by my ...
5
votes
4answers
132 views

Sensible strategy for unit testing expected and non-expected deadlock behavior

I'd like some ideas about how I should test some objects that can block, waiting for another participant. The specific unit to be tested is the channel between the participants, The the participants ...
5
votes
2answers
316 views

Limits of Klee (the LLVM program analysis tool)

http://klee.llvm.org/ is a program analysis tool that works by symbolic execution and constraint solving, finding possible inputs that will cause a program to crash, and outputting these as test ...
5
votes
2answers
248 views

How do SaaS companies verify and track the code they release to the customers?

I'm working at a SaaS company who releases new features and bug fixes to our customers every six weeks. When we write code changes they pass through different steps (like a state machine) before ...
5
votes
2answers
790 views

Easiest way for PHP email verification link

I already have an advanced user login/register system on my website (colemansystems.psm2.co.uk). However, I would like to have a email sent to new users for verification of their email address. If ...
5
votes
6answers
733 views

Is using 2 different hash functions a good way to check for file integrity?

I have a website where users can upload their files; these are stored on the server and their metadata recorded in a database. I'm implementing some simple integrity checks, i.e. "is the content of ...
4
votes
2answers
368 views

Best way to verify real world identity (name & address)?

I'm considering two options to verify identity but I'm not sure if either is viable: Paypal - charge someone $1.00 and refund it after receiving identity details from Paypal (will the Paypal API ...
4
votes
2answers
139 views

Bytecode and Objects

I am working on a bytecode instrumentation project. Currently when handling objects, the verifier throws an error most of the time. So I would like to get things clear concerning rules with objects (I ...
4
votes
1answer
3k views

How to validate SSL certificate chain in ruby with net/http

How can I verify the certificates of a site like https://processing.ukash.com/ in ruby with net/http? https = Net::HTTP.new('processing.ukash.com', 443) https.use_ssl = true https.verify_mode = ...
4
votes
5answers
976 views

How to verify email sender address is not spoofed?

As per this question I asked previously on Google App Engine, if I have access to all the information in a standard email, not just the From, To, Subject, Body fields, but also all the headers and ...
4
votes
2answers
254 views

Shared Business Rules for c# and Java objects

I've got a system that has Java server side objects and C# client objects. The objects can be modified in both sides of the system and so have business rules attached to them. The thing is currently ...
4
votes
3answers
599 views

XML signature verification library in C?

Are there any available libraries in C language to verify XML signatures? I could only find one library for C++ from http://santuario.apache.org/cindex.html .
4
votes
8answers
801 views

Data verifications in Getter/Setter or elsewhere?

I'm wondering if it's a good idea to make verifications in getters and setters or elsewhere in the code. This might surprise you be when it comes to optimizations and speed-ing up the code, I think ...
3
votes
1answer
262 views

Android In-App Billing : Security.java says “Signature Verification Failed”

I have implemented a test app with Android's In-App Billing. I have filled in my Public Key in the Security.java file. Everything works, but when I submit the payment, the app crashes. I receive an ...
3
votes
2answers
145 views

SMT solvers for bit vector arithmetic

I'm planning some experiments in symbolic execution of C code, using an off-the-shelf SMT solver, and wondering which solver to use; looking at e.g. the SMT contest entrants, and taking only the ...
3
votes
2answers
178 views

Stopping Bot [SO] - PHP

I saved this code in index.php and after filling i clicked Submit button, and then a verification page was shown to me ! My question is how did it detected that it was not from the original server ? ...
3
votes
2answers
88 views

Has anybody built a C-file for verifying the code-checking tools for MISRA-2004?

We are using PC-Lint for code-checking our sources for compliance with MISRA-2004. As this is a safety-relevant project and we're heading for a certificate by TUV, we need to show proof for our ...
3
votes
4answers
453 views

How do I check that all the dependencies of my installed Ruby gems are satisfied?

I must be missing something because last night I was astonished to find that googling for check gem dependencies and similar didn't reveal the answer for this. I'm basically after a rough equivalent ...
3
votes
3answers
115 views

Logic for software verification

I'm looking at the requirements for automated software verification, i.e. a program that takes in code (ordinary procedural code written in languages like C and Java), generates a bunch of theorems ...
3
votes
1answer
160 views

JAR file Signature Block Format

I am trying to write my own jar verifier application for BlackBerry. However, as BlackBerry does not have the support of the java.util.jar package, we are left to write the verification logic ...
3
votes
6answers
155 views

Verifying that something has been “done” through hashes/encryption

So, to start off, I want to point out that I know that these things are never fool-proof and if enough effort is applied anything can be broken. But: Say I hand a piece of software to someone (that ...
3
votes
2answers
93 views

Setup/Install project checks for a previously installed project before installing?

Is there a way for my setup/installer poject to check that another program is installed on the machine before proceeding with the install process? I am using Visual Studio 2008.
3
votes
4answers
521 views

How to verify sender of incoming email address in Google App Engine?

I'm trying to write a heavily email-based application in the Python SDK of Google App Engine. I've noticed that Google allows you to receive email via its API, and that it easily gives you access to ...
3
votes
3answers
558 views

Verify domain ownership

When setting up Google Adsense or Gmail as a site owner, you are required to modify a CNAME record for verification. Microsoft does the same thing. I am building a website where I would like an ...
3
votes
3answers
140 views

Server/Client Verification?

We're considering creating a program which sends a POST request to a server-side program for some processing. We'd like to consider some sort of verification to make sure the POST request isn't a ...
2
votes
2answers
62 views

How to stop spam accounts

I have a web site using Facebook Connect where people have a strong incentive to create fake Facebook accounts and login multiple times in order to get more "votes" in my singing competition. ...
2
votes
3answers
68 views

ensuring PHP good coding practice with functions?

I'm relatively new to PHP, and I want to ensure I code as efficiently and as correctly I can - specifically, I'd like to ask about how functions should be implemented with each other and how large and ...
2
votes
0answers
112 views

Jquery date of birth validation with DOB inputs [closed]

Possible Duplicate: How do I verify age using jQuery? I need to implement this FORM by having three inputs instead than one. Currently I have only one input. but I need: <input ...
2
votes
3answers
163 views

Generate a random code that can be validated after

I need to generate a verification code and send it to a customer, and then customer provide the/a code and I validate it. Without any database data storing. All on the fly, no database involvement. So ...
2
votes
4answers
220 views

how to stop bots signing up without captcha or email verification

I've seen a couple of websites (for instance - crowdrise.com) where it seems you can signup for an account and create pages on their website without once having to click a link in an email or having ...
2
votes
1answer
247 views

Openssl s_Client doesn't verify certificates in 0.9.8r

I am using openssl v0.9.8r and I tried running this command (with the CA file name as cacert.pem in the directory in which I was running) openssl s_client -CAfile cacert.pem -CApath ./ -connect ...
2
votes
2answers
330 views

Mockito: Verifying with generic parameters

With Mockito I can do the following: verify(someService).process(any(Person.class)); But how do I write this if process takes a Collection<Person> instead? Can't figure out how to write it ...
2
votes
2answers
94 views

Bash Verification and Conditional Statements

I am in the process of writing an install script for a program in bash. The first part of the install detects whether the program is already installed or not. This is detected by the presence of a ...
2
votes
3answers
285 views

What's the difference between data Validation and Verification?

My recollection from a past employer is that they distinguished between the two as follows: Validation is the process of checking that the data is appropriate in a very basic sense; for example that ...
2
votes
2answers
104 views

United Kingdom Address Verification Web Service

We're looking for a good web service or datasource that provides address verification for the United Kingdom. Was wondering if anyone else had used this type of product and had recommendations?
2
votes
2answers
258 views

Verification needed: Clearable Python Queue class

Since I'm not an expert for Python and multi-threaded programming I'd like to ask you if my implementation is correct. My aim was to extend the Queue class so it can be cleared. And the removed items ...
2
votes
1answer
117 views

R verification package

I solved the problem of reading the data and got some plots from verification package of R. Now i want to know that how to arrange data in R i.e. i arranged the observation data like (120, 396) where ...
2
votes
6answers
116 views

A PHP Function that verify code language

I have a form with 2 textareas; the first one allows user to send HTML Code, the second allows to send CSS Code. I have to verify with a PHP function, if the language is correct. If the language is ...
2
votes
2answers
659 views

blackberry and php verification

Is there a way to verify a users blackberry pin using php ? or any other methods you may suggest :) EDIT Users visits website: example.com. user signs up enters a blackberry pin. ...

1 2 3 4 5