Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
133 views

Is there any good way to “encode” binary data as plausible madeup words and back again?

To give you a very simple and bad example. The data is split in 4 bits. The 16 possible numbers correspond to the first 16 consonants. You add a random vowel to make it pronounceable. So "08F734F7" ...
4
votes
4answers
142 views

Are there known techniques to generate realistic looking fake stock data?

I recently wrote some Javascript code to generate random fake stock data as I wanted to show a chart that at first glanced looked like real stock data - but all I came up with was pretty noddy. I was ...
3
votes
2answers
83 views

Faking Http Status Codes in IIS/.net for testing

This is quite an odd question, but I am trying to test the Web.Config settings for custom errors e.g.: <customErrors mode="On"/> <error statusCode="500" redirect="500.html"/> ...
3
votes
3answers
543 views

Virtual Filesystem with C/C++ under Windows

I am currently developing a game which simulates an operating system. Therefore i need an ingame filesystem. Currently, i am using zziplib to be able to load files from a zip archive, however this is ...
2
votes
3answers
76 views

Identify fake UDP Packet

I want to identify an UDP or TCP packet that have its source IP address faked. My guess is that even if the packet is faked with a program such has hping, the MAC src address is still the same on all ...
2
votes
2answers
65 views

Create fake storage device

Is it possible to create a fake storage device by software? I want a similar behavior like a usb stick. It should appear in the filesystem. If I put some data in it, the driver should push it over ...
2
votes
2answers
131 views

IntelliSense in .fsx and dynamicaly loaded assemblies

When dynamically referencing assemblies in .fsx using #I and #r, VS highlights the following usages of imported types and writes "The namespace or module 'XXX' is not defined". Is it ok? For ...
2
votes
2answers
71 views

Testing software: fake vs stub

There are quite a few written about stub vs mocks, but I can't see the real difference between fake and stub. Can anyone put some light on it?
2
votes
1answer
102 views

Setting ExitCode in self-hosted F# script

I am hosting the FSI.exe in my build tool ("FAKE - F# Make") and I need to set the ExitCode for FSI.exe from inside my fsx-script. Is this possible? At the moment I am raising errors in the F# build ...
1
vote
1answer
32 views

Fake Facebook accounts

We plan to make a new application. One person will be the first by voting in the competition. We want to prevent voting by opening false accounts. Can we get the opening day of a Facebook account? ...
1
vote
2answers
85 views

Is it possible to fool app on Jailbroken iPhone and make fake inapp purchases

We're launching an app that is selling the service through inapp purchases. Currently we asessing a risk of Jailbroken devices. Is it possible that a user with a jailbroken iphone simulates an inapp ...
1
vote
0answers
39 views

Faking a FTP service

I am writing a piece of software which can fool Nmap into believing that GuildFTPd FTP Server is running on port 21. My python code so far looks like this: import socket s = socket.socket( ) ...
1
vote
2answers
34 views

Can anyone tell me the name of the old 8 bit processor used most for emulator beginners?

I remember a few years ago writing an emulator for an 8 bit processor, which IIRC, never really existed. It was thought up by someone in order to write a emulator, and was referenced a lot for ...
1
vote
0answers
96 views

Create fake flash drive programmatically

I want to create a fake flash drive programmatically under Mac OSX and Windows. It should behave like a normal drive, that means it should appear in explorer/finder, should be unmountable,.. If ...
1
vote
2answers
185 views

Fake Http Context for testing [closed]

Possible Duplicate: How do I mock the HttpContext in ASP.NET MVC using Moq? One of my DLL's has a method like this public void RegisterPerson(Person p, HttpContext context) { ...
1
vote
8answers
331 views

Fake a $_POST via PHP

I'm all in a security funk right now so I'm going through making everything as secure as possible. I got a login going and I'm referencing this: ...
1
vote
1answer
189 views

Validating javax.persistance annotations?

I would like to programmatically check if an object fulfills what is specified by its javax.persistance annotations. I am creating a fake for a Hibernate DAO for unit testing purposes. However, there ...
1
vote
2answers
94 views

Looking for tool to search text in files on command line

Hello I'm looking some script or program that use keywords or pattern search in files ex. php, html, etc and show where is this file I use command cat /home/* | grep "keyword" but i have too many ...
1
vote
0answers
351 views

Wordpress create fake frontend menu pages

In all this confusion, my main objective is to show some menu items in the frontend that link wherever I want (subject to filtering). To do this, I first looked up the code in wp_list_pages() and ...
1
vote
1answer
381 views

Faking WPF Manipulation Events

I want to fake manipulation (or touch) events using a mouse / keyboard. When I try to raise the events using: RoutedEventArgs e = new RoutedEventArgs(ManipulationStartedEvent,this); RaiseEvent(e); ...
1
vote
1answer
139 views

Creating a fake has_many relationship - one that depends on some other member var

My application has a user model with some simple access level checks. This access level determines the scope of access to the other models in the database. To be precise, I have District, School, ...
1
vote
2answers
296 views

PHP - Faked Multiple inheritance - How to pass multiple parameters to functions

I found this while searching for how to fake multiple inheritance in PHP (since PHP does not support multiple inheritance directly). ...
0
votes
2answers
60 views

android: fake status bar information

Hello stack overflowers, I'm trying to fake some information that are shown on the status bar (I'm doing this for a good reason, for example when a thief steels the phone, he doesn't deserve to know ...
0
votes
1answer
71 views

how to send fake sms to my Android Device

i want to send fake sms on android. but i couldnt do it.My codes are below: Intent a = new Intent("android.provider.Telephony.SMS_RECEIVED"); byte[] by ...
0
votes
1answer
116 views

Autofac adaptation for Castle Windsor

I want to use Castle Windsor to register a FakeHttpContext when the HttpContext is not available. Can anybody help me to translate the following Autofac-registration into Castle Windsor. ...
0
votes
1answer
34 views

Detect Fake CLicks and Impressions Ads Project

I am creating a mobile ads project and I need to detect real ip/user_agent/os and all that stuff. I am able to track them down but my problem is I will give the publisher php code and will detect ...
0
votes
1answer
61 views

jquery and browser fake clicking

I know that the browsers don't support fake clicking. I know I can go back and just start refactoring out all of the obtrusive javascript... but that won't happen. With that being said... Heres the ...
0
votes
1answer
89 views

Fake Call, Iphone

Anyone know how to code and have a fake call pop up in an Application, so I can use my own audio? I know several apps have done this, just don't know where to start.
0
votes
1answer
89 views

Faking Http Sub Status Codes in IIS/.net for testing

Now this is tightly coupled to the question I raised and had answered yesterday. This question/answer works well for testing asp.net errors (such as straight for 500, 404, 502 etc errors) but when I ...
0
votes
1answer
163 views

apt-get boost fake package installed

I recently needed to update debian squeeze from boost 1.42 to 1.48. This involved removing the current boost 1.42 packages and installing from subversion the 1.48 packages. Unfortunately this breaks ...
0
votes
1answer
245 views

Fake file upload in Chrome not showing file name

I'm trying to use the solution over at quirksmode.org to sort the file upload input inconsistency problem, using the following javascript: $('.sidebar-uploadcv ...
0
votes
6answers
138 views

how to fake user input in C

Simple question I hope. I have a function that keeps prompting for user input (characters) and returns a character once it finds that the input is valid under certain conditions. I'm writing tests for ...
0
votes
2answers
233 views

How can I fake my IP address [closed]

I have a sprider collect data from some web site.but it offen be denied. I think it basis of my IP address. how can I fake my IP address. or have a another way to avoid be denied. thx.
0
votes
1answer
185 views

How to simulate a unicode “key press” under Linux?

I try using the XTest extension of the X server. The XTestFakeKeyEvent function expects a keycode. As long as the Unicode character in question is assigned to one of the keycodes I have no problem at ...
0
votes
1answer
200 views

ipad uisplitviewcontroller in second view or fake uisplit

My app should have a back end for the admin to change some settings, but in the back end view, I want to use a uisplitviewcontroller, also the app only works in landscape mode, the problem is that ...
0
votes
1answer
78 views

How to verify form submitted from the same server witout using HTTP_REFERER?

I have this form on my site, i want to prevent from users to submit the form from local copy. or submit the form from other domain (Cross Site Scripting). the HTTP_REFERER is not trusted because its ...
0
votes
4answers
263 views

Creating Fake Objects

I was just curious, afer seeing an ad on S/O, and clicking on it, then downloading it from Google Code... Why would anybody want/need to create a Fake Object? I don't object to it, or don't think ...