Flash :: Get The Client-IP Even If A Proxy / VPN Is Used?

Aug 23, 2011

How do I get the clientIP from users in my regisrtationforms? It's easy to get the IP with the user isn't using a Proxy, Proxycacade or VPN. But if he uses one of those its difficult. X-Fowarded-For isn't reliable and fails within cascads.

But there are possibilities, because JavaApplets and Flash aren't using the Proxy-Services. How can I archieve to get the clientIP with those technics? I prever to use a small Flash-Code to get the IP from the client, but how to implement?Another way should be a counterpixel which is using IPv6. Most of the proxyservices only support IPv4, can I tell an image only to use IPv6?

View 1 Replies


Similar Posts:


Flash :: Uploading Images With Uploadify Run Into IO Error With Local Proxy (proxy.pac)?

Feb 21, 2010

I'm trying to upload images with Uploadify but I run into IO error. I have gotdemo and it works on my computer, so I decided to implement functionality of my application to this example step by step to catch the error and discovered that the reason of IO error is my local proxy.pac (I use FF):

function FindProxyForURL(url, host) {
if (shExpMatch(host, "*.app.local*")) {
return "PROXY 127.0.0.1:3000";

[code]....

View 1 Replies

Flash :: Proxy Error #2124?

Jul 13, 2011

I got a standard php proxy getting images cross domains.

domain/proxy.php?url=http://images.fandango.com/r85.7.3/ImageRenderer/69/103/images/no_image_69x103.jpg/135631/images/masterrepository/fandango/135631/hp7_2-3d imax poster_lo.jpg

[code].....

View 1 Replies

Flash :: Get The Proxy Server To Cooperate?

Aug 1, 2011

I'm trying to use JMeter to test our web application and I'd like to use an automated recording of tests but our UI is in flash/flex. Is there any way to get the proxy server to cooperate with the flash/flex? I do have control of both the client and server sides, though rewriting our application to redirect the flash/flex calls to another address isn't really an option. If there were an automated way...

I'm currently testing Windows client and server, but I also need to support testing on Linux client and server. If tests need to be created on one or the other and can be ported to both I could live with that.

View 2 Replies

ActionScript 3.0 :: Flash Upload From Behind A Proxy?

Jan 20, 2009

I am working behind a proxy and some of the flash uploaders out there require me to authenticate myself on the local proxy before allowing me to upload files. I have such an uploader which currently is outside my network. However after it tryes to execute file.upload(request); it dies silently without a trace of what is going on. I presume that it fails because it hasn't requested the proxy auth. How can I show the proxy auth login pop-up. Here's a sample of my code

ActionScript Code:
var request:URLRequest = new URLRequest(this.uploadScript);
request.method = URLRequestMethod.POST;
request.data = new URLVariables();

[code]....

View 0 Replies

Flash :: Setting Proxy Settings For Player?

Jan 9, 2011

I asked Google. But there is no working answer for it. I checked "right click -> global setings" and found no proxy setting in [URL].. Can anyone know how to configure proxy settings for flash player?

View 1 Replies

Flash :: Applications Forced To Use A Browser's Set Proxy?

Feb 6, 2012

Are flash applications forced to use a browser's set proxy.

Such as a proxy that has been set on foxy proxy.Or will it be treated as a separate application that can see the user's real IP address.

View 1 Replies

ActionScript 3.0 :: Test A Flash Movie Using A Php Proxy?

Sep 18, 2009

I'm trying to get a JSON response from an API into Flash using a PHP proxy (and decoding in as3 using as3corelib), and I can't figure out how to test this.

If I run an html/js file that is using the proxy to get the same data, it works, so I know that there aren't errors in my php file.

If I use my as3 to directly call and parse data from a different API (not using a proxy), I can get the data ok.

But if I run my swf trying to connect to the proxy file and get results, nothing happens. I'm not really sure how to trace what's going wrong. I assume I have to test the swf on the server? Or does just the php file need to be on the server and I can test the swf locally (this would be WAY easier)?

Here's my code:

Code:
package com {
import flash.events.*;
import flash.events.EventDispatcher;
import flash.display.Sprite;

[Code]....

View 2 Replies

Flash :: Php - Streaming Media With A Cross-domain Proxy

Jun 10, 2011

Lets say I have a PHP application using very cheap shared hosting. What is the best way to stream audio/video (mp3/mpeg) that is tens of megabytes to hundreds of megabytes in size. I am thinking of a PHP based cross-domain proxy that uses caching. Is there something wrong with this approach?

View 1 Replies

Flash :: Flex Send Request Through Proxy Server?

Aug 20, 2011

I am creating a google scraper in Adobe AIR using the Flex 4 framework. I have run into a brick wall: Google forces a captcha after around 10 pages are read. Can anyone tell me how to get the page through a proxy server

[Code]...

View 1 Replies

Flash :: Modify Windows Proxy Settings Via Registry In Adobe Air?

Sep 5, 2011

I want to modify windows proxy settings in adobe air. Below is my code. It doesn't work.What's wrong with it?

[Code]...

View 2 Replies

Flash/Actionscript - Post A Tweet From A Swf (without Using A Server-side Proxy Such As Tweetr)?

Apr 29, 2010

How can I post a tweet directly to twitter without needing to use a server-side proxy script (ie, tweetr)? Can a twitter API call be made directly from a swf?

View 1 Replies

Media Server :: Find Client Disconnected When Client Lost Net Connection?

Oct 27, 2010

how can I find on fms server that client disconnected if if client disconnected due to power cut off. I client manually close the application then onDisconnect on server is called but if due to power cut off it does not called.

View 1 Replies

Flex :: Flash - Connect To Adobe Stratus Server In A Application From Inside A Proxy

Jan 19, 2010

I am trying to develop a P2P conferencing application in flex using RTMFP. So I have to make connection to Adobe Stratus server for Id of Flash Player instance. I am a student and behind the http proxy. I have checked in NetConnection class but, didn't find anything related proxy configuration.So, How can I configure proxy settings for my flex application.

View 1 Replies

ActionScript 2.0 :: Client To Client File Transfer

Nov 19, 2008

Can we perform client to client file transfer, client to server can be done by FileReference. but how do we do client to client transfer, for example if a user wants to send file to another user to whom he is chatting online.

View 3 Replies

Actionscript 3.0 :: Client To Client Streaming?

Mar 17, 2010

I am trying to build a client-to-client streaming program - client 1 has a webcam and client 2 will connect to client 1 and be able to view the webcam. Is this possible using 2 swf clients? Can someone point me in the right direction as to what commands would be used to connect the two clients. I have tried: binary sockets Connect() where each clients points to the other and they both time-out NetConnection to try to point each client to one another to establish a connection, but no luck with that either; this seems more oriented towards streaming content to a flash media server rather than to another flash client.

View 1 Replies

Actionscript 3 :: Client + Grails Server - Processing Audio At The Client And Sending It Back To The Server

Mar 8, 2012

We're writing a flash application that can download a MP3 file, convert it to a Sound object, get the raw data and make some processing (like adding sounds, change octaves). After the processing, we want to send the data back to the server in chunks, so the server will be able to glue the data together and recover the new generated file. The problem is: if we send to the server "wav" pieces of sound, we are able to glue them together without any problem in the generated file. However, if we convert each wav piece to a mp3 file (so we can send a smaller file to the server) and join the mp3 files at the server, the result is a sound with some problems at the merge point.

This is how we load the mp3 file from the server:

sourceSnd.load(new URLRequest("sample url to mp3"));
sourceSnd.addEventListener(Event.COMPLETE, carregou);

This is how we convert each piece of mp3 to bytearray and wav:

[Code]....

View 1 Replies

Flash :: Proxy - Using SWF Applications To Retrieve A User's "real" IP Address?

Jun 27, 2010

I'm almost certain this is possible, but am not sure how to go about it.

Basic idea: User visits a website using a HTTP/socks proxy. Hidden .swf file is embedded on the site which, when loaded by the client, sends data back to the web server, and that allows the IP to be logged along with a corresponding session ID of some sort which ties the proxy IP and the true IP together.

My question is how would I go about doing this in flash? I've searched for examples, but all I've managed to find on the subject is people claiming that it's possible to do.

View 2 Replies

Actionscript 3 :: OAuth Twitter Without Use Of A Proxy Server Or Server-side Script In A Flash Web Application?

Apr 19, 2011

I can't use a proxy server. Can't use google app engine etc. I can't use server side code. No php or python. I need to be able to do logins to twitter and post status updates to twitter through an Actionscript 3 web application. The biggest thing is obviously getting around twitter's crossdomain. Is there a clean ajax version of this or something?

View 1 Replies

Php :: Proxy To Get XML?

Feb 17, 2011

So I need to retrieve XML from a public API, but my app is in Flash and the public service won't implement a crossdomain.xml file. I found this PHP script online (below) for a proxy to request the URL. It works fine for URLs like:

[URL]

but the script seems to either strip or ignore any arguments on the URL, like:

[URL]

I'm PHP ignorant. Is there an easy way to have this script process those URL arguments? Here is the script:

<?php
$post_data = $HTTP_RAW_POST_DATA;
$header[] = "Content-type: text/xml";
$header[] = "Content-length: ".strlen($post_data);

[code]....

View 1 Replies

Media Server :: Using A Proxy To 3.5

Aug 18, 2010

Is it possible to use Apache to proxy/tunnel RTMP(S) traffic through to Flash Media Server?Basically, I want to tunnel RTMP traffic using HTTP through Apache.What I want to be able to do is open up an appropriate port (either 80 or 443) on the Apache server and have that proxy traffic through to Flash Media Server. The reason I ask is that I have set-up this scenario but I keep getting a "NetConnection.Connect.Failed" error message; I captured the network traffic flowing between my machine and the server and it is connecting to the server, just nothing happens after that.Do I have to connect directly to Flash Media Server?

View 1 Replies

Use A SWF As A Web Request Proxy Between Javascript And Server?

May 23, 2009

I know I can call my server directly from javascript. However, I want to do this through a non-GUI SWF file. I'm fairly new to Flash but have gotten all the CS3 tools from work. Does anyone know of any examples on:

1. how to make a web request from within flash provided the URL, post content, and timeout

2. how to call a Flash API from javascript asynchronously

3. how to detect whether the browser being used can support my SWF (I don't want it to prompt to install Flash if they don't have it yet)

I'm actually hoping someone has already done this and has a sample already built.

View 7 Replies

Actionscript 3 :: Cast A Proxy To An Interface?

Jan 30, 2011

I need ActionScript Proxy to be castable to a particular interface.

Here is an example without interface:

public dynamic class Tracer extends Proxy {
flash_proxy override function callProperty(method:*, ... args):* {
trace(method + " " + args)
}
}

[Code]...

View 2 Replies

Flex :: Use Proxy In It's HTML Control?

Mar 21, 2011

I want to use a proxy on the HTML Control found in Adobe AIR.I have tried looking at the AS3 docs on Adobe but honestly, it didn't explain the usage clearly to me and looking at Adobe's example, I can't seem to make out anything off of it.

View 1 Replies

Php :: Facebook Proxy Loader Security?

May 19, 2011

I'm using a PHP proxy script to load images from Facebook into Flash without any sandbox violations. It is taken from the guide here: [URL].. The relevant PHP code is:

[Code]...

The guide mentions that additional security measures are recommended for a real world application. What additional measures would be applicable to this? Maybe some kind of key passed from Flash to PHP?

I realise that there's nothing I can do to completely protect the Flash from being decompiled, but can I prevent the script from being used maliciously?

View 1 Replies

AS3 :: Overriding Proxy GetProperty Method

Jun 6, 2011

I've run into a peculiar problem while trying to make use of the Proxy class and override the getProperty() method. I've attached my example class code below:

package
{
import flash.utils.Proxy;
import flash.utils.flash_proxy;

[Code]....

View 1 Replies

Actionscript 3 :: How To Define Proxy Without Blaze DS

Jan 5, 2012

I have an AIR app that I need to define a proxy for because the services sit behind a firewall. We are not using BlazeDS so I can't define the proxy settings in the proxy-config.xml file. So, how do I do it? I'm guessing that I'm not the first person who has had to work behind a firewall when accessing data so I'm not sure why I can't find any documentation on the web anywhere about this.AIR says it is supposed to automatically know and use the proxy configuration from your system, i.e. default browser. In there, I don't set a manual proxy, I use the 'automatic configuration' and point it to a .dat file. Could this be where the problem is? Does AIR not know how to understand this?There's no way to set a proxy on an HTTPService component unless you are using Blaze DS or LCDS? Is this true? I'd hate to have to add that to my application just so I can get this accomplished.

View 1 Replies

ActionScript 3.0 :: Loading Crossdomain.xml By Proxy?

Feb 6, 2009

I have to load my "crossdomain.xml" using a proxy.how can i do that?

View 0 Replies

Flex :: Drag Actual Element Rather Than A Proxy?

Dec 17, 2009

I'm trying to implement a dragging system which can only be described as similar to dragging the map on Google Maps. I can set up dragging easily in Flex, but unfortunately the standard model of dragging i.e. dragging an element proxy and dropping it in another element is not what I'm after.

Is there anything built into flex where the actual element rather than a proxy can be repositioned in a different place within the same parent? Or will I have to hand code something using mouse events as you would if implementing a solution in JavaScript?

View 2 Replies

Flex :: BlazeDS Servlet Not Responding Through Proxy?

Jan 25, 2010

I have a problem using Flex with BlazeDS on a Tomcat 5.5 through a Proxy (Apache). I already searched for it but didn't find answers which solved my problem. I hope you guys can help me out. Our scenario is the following: Flex-App using BlazeDS to communicate with our Dataservice on a Tomcat 5.5.The Webapp is balze enabled and the services config contains channel definitions like the following:

<channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
<endpoint url="http://xxx.xxx.xxx.xxx:8180/myDataService/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint">
</channel-definition>

[Code]...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved