Ubuntu :: Cisco - Firefox - HTTP Post ?

Aug 7, 2010

I am using the following software stack:Linux version 2.6.32-21-generic (buildd@yellow) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:09:38 UTC 2010 (Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2) (Kubuntu) cisco anyconnect vpn client 2.3.2016, Mozilla Firefox 3.6.8

The problem I have is that once I join my company vpn, I have full access to corporate services confluence, jira, servers, etc. However when I use firefox to try and resolve a jira and post a body of text the connection timesout.

If i use any other browser it works fine, if slow, if i transition workflows it works fine, and if i use windows and firefox with the same cisco client it works fine.

This appears to be a specific issue with Firefox. I have noticed that in general firefox is slower on ubuntu than on any other platform.

View 3 Replies


ADVERTISEMENT

Software :: Firefox And Http Post ?

Sep 10, 2010

There are a few web databases (also including my own php-based pdf manipulator), where I need to fill a html form, and upload file attachments.

About one year ago, these sites stopped to work correctly, when using Firefox (but they work from Internet Explorer). The problem concerns file upload.
Other users here also experienced this, and no firefox update corrected the problem in the past year (I am using Firefox 3.6.9 now, and the problem is still there).

When debugging my pdf creator, I found that the attachment-type of any file upload made by firefox is "text/html", irrespectively of what is the type of the uploaded file. Whilst files uploaded by IE have the correct attachment-type.

View 1 Replies View Related

General :: Using Curl And WGet To Send HTTP Post

Oct 11, 2010

I would like to find out how I would use both curl and wget to sent an http post to get the hostnames of a few servers. I know am not even given any work of anything I have done, but the reason is that I am really lost, and I do not even know how to start it.

View 4 Replies View Related

Server :: Lighttpd - Slow HTTP POST Attack

Jan 31, 2011

[url]

I ran across the above article, which described a DoS attack in which requests are sent very slowly to the Web server. I'm running lighttpd 1.4.28 on a Gentoo Linux server, and I'm wondering if there is anything I could do in preparation to defend against such an attack.

A bug report [url] seems to indicate that there was a patch in place already against this sort of attack, but I wanted to be sure that was the same thing and if there was anything else I needed to do.

View 3 Replies View Related

Ubuntu Networking :: Cannot POST Http - Unable To Send Mail Via Squirrelmail

Nov 23, 2010

I have a really weird (but consistent) problem with my Kubuntu 10.10 install: I cannot post some HTTP forms.

First off, this is a client PC problem. My squirrelmail on the server works fine. I just use squirrelmail 1.4.17 to troubleshoot the ubuntu desktop problem

I used an old (07.04) Ubuntu install which worked fine. Then I wiped the disk and installed Kubuntu 10.10 on the same hardware. Everything works but **some** HTTP post does not work (I can log in but not send mail or save draft). I noticed I cannot log in to Yahoo, for example.

My webhosting account can display the apache access_log. When I hit the <Send> button the POST request never arrives to the web server.

I use a router (Dlink DL-604) behind a DSL modem and ooma box. There is a Windows 7 PC and a Kubuntu PC connected to the router. I can use squirrelmail just fine from the Windows PC.

I tried several steps:
- reinstalled Kubuntu
- installed Firefox and Chromium (on top of reconq)
- ran from a CD on my other (Windows 7) PC
- installed Wireshark and compared the traffic (but was unable to pinpoint a problem)

The result was the same: the <Send> button just keeps waiting; the POST request never makes it to the web server.

This sounds (and is) scary and suspect. The fact that the "demo" Kubuntu install (from the CD on my other Windows PC) using the reconq exhibits the same problem on a totally different hardware leads me to believe this may be related to Kubuntu. For example, I had to type this very message on the Windows PC as I could not post it on the forum from my Kubuntu box.

View 2 Replies View Related

Ubuntu Networking :: HTTP POST File Uploads On PCs - Getting 500 Internal Server Error Message

Sep 23, 2010

We're having an issue with HTTP POST file uploads on our two Ubuntu PCs. For some reason, whenever one of our users attempts to submit a file in an HTML form, the request times out, usually with a 500 Internal Server Error message. This problem is not limited to one site, but occurs on all sites that use file uploads. Also, the problem does not appear to be with our network, as a Windows 7 PC on the same network can upload files to the same sites without any difficulties. The problem is not browser-specific; we have tested with Firefox, Epiphany, and Google Chrome and all produce the same results. The issue is relatively new, and was first observed within the last month; before this time, both machines had no problems uploading files.

Does anyone have ANY idea what could be causing this? I've tried a number of things, including rebooting the PCs, rebooting the network, disabling IPv6, etc. I'm not very experienced in Linux system administration, but I can use the terminal and am familiar with some terminal-based diagnostic tools, so if you need any additional info or want me to try something, please let me know! I've exhausted my own computer knowledge with regards to finding a solution to this problem.

View 3 Replies View Related

Software :: CURL Post Data Command From Shell - HTTP Error Code 408

Jan 29, 2011

I am trying to connect to the web interface found at [URL] using curl. This first requires login information to be entered at [URL], but I am having an issue with the login process. I am trying to submit the following form via POST:

Code:
<form action="j_security_check" method="post" id="login_form" name="login_form">
<center> <table style="background: #cac1cf;FONT-SIZE: 12px;">
<tr> <td align="center" colspan="2">Please enter your username and password:</td>
</tr> <tr> <td align="right">Username</td>
<td> <input name="j_username" style="width: 250px" id="j_username" type="text"/> </td>
</tr> <tr>
<td align="right">Password</td>
<td> <input style="width: 250px" name="j_password" id="j_password" type="password"/> </td>
</tr> <tr> <td colspan="2" align="center">
<input value="Enter" name="enter" type="submit"/>
<input value="Clear" name="Clear" type="reset"/>
</td> </tr> </table> </center> </form>
The command that I am using for this is the following:

Code:
curl -c cookies -b cookies -L -d "j_username=user%40domain.com&j_password=pass" [URL]
The command is properly formatted as far as I can tell. I tested it with another website using a similar authentication scheme using different POST variables specific to the form and it worked fine.

When I run the above command with the -v tag, it reveals this:
Code:
* Connected to lcl.uniroma1.it (151.100.4.74) port 80 (#0)
> POST /sso/j_security_check HTTP/1.1
> User-Agent: curl/7.21.0 (i686-pc-linux-gnu) libcurl/7.21.0 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18
> Host: lcl.uniroma1.it
> Accept: */*
> Content-Length: 44
> Content-Type: application/x-www-form-urlencoded
>
} [data not shown]
< HTTP/1.1 408 The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser
< Date: Sat, 29 Jan 2011 15:26:41 GMT
< Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
< Content-Length: 1554
< Connection: close
<
{ [data not shown]
103 1554 100 1554 0 52 5081 170 --:--:-- --:--:-- --:--:-- 10223*
Closing connection #0

I cannot tell why the login timeout is expired when I try to do this, and my investigation toward this end has been fruitless. I saw a brief snippet on Google that vaguely suggested that the underscores in the domain name were at fault, but replacing these with their encoded counterparts did nothing to resolve the issue (that, and underscores should be fine when sent unencoded according to the standards). I have extensively perused the man pages and have come up with nothing to adequately explain this behavior. I also talked to a friend who has worked with curl in his line of work, but he mostly has experience in the context of PHP and has not dealt with this issue before. I am running GNU/Linux 2.6.35-22-generic-pae.

View 3 Replies View Related

Ubuntu Networking :: Unable To Access Http://192.168.1.1 In Firefox 3.6.18?

Aug 2, 2011

In ubuntu 10.04 LTS I am currently unable to access the location http://192.168.1.1 I have accessed it earlier. This is necessary for modem configuration. I am at a loss why this is inaccessible at present. Can anybody please advise what to do? I am configuring firewall but I doubt if that has anything to do with my problem. Or in case this may be due to faulty firewall configuration, please indicate denial of possible service/program which may cause this. Also ping 192.168.1.1 reports 100% packet loss.

View 8 Replies View Related

Fedora :: Try To Go Back To Add The Bug Report To This Post, Firefox Crashes, Every Single Time?

Jul 7, 2010

I'm running F 13 and today's updates included updates to Xorg, so I logged out and back in to let them take effect. Ever since then, Firefox has been repeatedly crashing, especially on certain sites. I managed to get the crash reporting tool to report it to Bugzilla, but when I try to go back to add the bug report to this post, Firefox crashes, every single time. Has anybody else found this? If somebody can get to bugzilla.redhat.com and find the report (The email address I use there is joe@zeff.us if it helps.) I'd appreciate having it added as a response to this, so that others can find it and,

View 14 Replies View Related

Ubuntu Multimedia :: Firefox: No Way To Play An Application/x-ms-wmp Http://sanamluang.tv/asx/livetv4.asx?

Mar 19, 2010

We trie to watch tv on http://sanamluang.tv but there's no way to get any reaction from this site.Looking the source it's the following (part of it)

type="application/x-ms-wmp" param value="http://sanamluang.tv/asx/livetv4.asx"

With windows xp firefox or chrome everything is easy, no problem. ubuntu and firefox with "windows media player plugin" nothing works.I tried vlc, totem, mplayer ... no way.

View 2 Replies View Related

Fedora Installation :: Upgrading Firefox Browser - HTTP Error 404

May 31, 2011

I have been windows using for over years and now after seeing Linux in couple of colleagues desk, I liked and have installed Linux in my home desktop (Fedora 14). After installing Fedora 14, I tried upgrading my browser Firefox from 3.6.17 (which came by default) to Firefox 4.0. I googled and got the procedure for upgrading tirefox. from this link [URL]. I followed the exact steps and while I tried to install I get the following error. I tried enough to get rid of this problem but all attempts in vain.

The Error that I get is:
[root@localhost yum.repos.d]# yum install firefox4
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora-firefox4. Please verify its path and try again

[root@localhost yum.repos.d]# yum install firefox4
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
repos.fedorapeople.org/repos/spot/firefox4/fedora-15/i386/repodata/repomd.xml:
[Errno 14] HTTP Error 404 : repos.fedorapeople.org/repos/spot/firefox4/fedora-15/i386/repodata/repomd.xml
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora-firefox4. Please verify its path and try again
[root@localhost yum.repos.d]# ls

View 6 Replies View Related

Fedora :: Open Firefox - Get Really Strange HTTP And HTTPS Connections Showing Up In Firestarter

Oct 22, 2009

I've noticed that when I open firefox I get really strange HTTP and HTTPS connections showing up in firestarter (which as I understand it is just a GUI for IPtables). They connect to various bits of a site listed as 1e100.net (when you use "lookup hostnames") such as wy-in-f18.1e100.net, they stay connected all the time as far as I can see unless I close firefox. I've heard people say they are connected to Google, but I can close all tabs after loging out of google and still see them... it's very odd.

View 3 Replies View Related

Ubuntu Servers :: Nagios On 10.04 Server Using Apt-get - HTTP WARNING: HTTP/1.1 404 Not Found

Aug 4, 2010

I installed Nagios on my Ubuntu 10.04 server using apt-get and when I accessed the web console, everything was OK. I made some changes to apache (creating some new virtual sites) and since then Nagios gives me a warning message for HTTP with the message, HTTP WARNING: HTTP/1.1 404 Not Found. The sites that I created are working perfectly. I noticed that the attemps are 4/4. Does this need to be reset or does Nagios automatically reset that once it detects the issue is resolved?

View 1 Replies View Related

Networking :: Craft A Valid Http/1.1 Request For Getting Http Headers (not The Html File Itself)

Sep 27, 2010

Using netcat, nc(1), craft a valid http/1.1 request for getting http headers (not the html file itself!) for the main index page of www dot aalto dot fi. What request method did you use? Which headers did you need to send to the server? What was the status code for the request? Which headers did the server return? Explain the purpose of each header.

nc -v www dot aalto dot fi 8080
HEAD / HTML/1.1
host: www dot aalto dot fi
And it returns:
200 OK
Content-Length: 858
Content-Type: text/html
Last-Modified: Thu, 02 Sep 2010 12:46:01 GMT
[Code]....

I really don't know what does it mean. Question 2: Using netcat, nc(1), start a bogus web server listening on the loopback interface port 8080. Verify with netstat(, that the server really is listening where it should be. Direct your browser to the bogus server and capture the User-Agent: header "Direct your browser to the bogus server and capture the User-Agent: header" I don't understand this question.

View 2 Replies View Related

Server :: Apache2 SVN Post-commit Script Certificate Error Post-commit Hook Failed (exit Code 1) With Output?

Oct 12, 2009

I am using apache2 with subversion and trying to get post commit script to run an svn update command. All svn commands seem to work fine manually

Everything used to work fine but then the server ip changed and I can no longer access it with the web name and have to use the ip directly

I am using tortoise svn with vista on my work machine

Here is the script

#!/bin/sh
export LC_CTYPE=en_US.UTF-8
/usr/bin/svn update /home/common/webroot/bob

Here is the result.

Command: Commit
Modified: C:UsersMattDesktopcheckout - bobindex.php
Sending content: C:UsersMattDesktopcheckout - bobindex.php
Completed: At revision: 63
Error: post-commit hook failed (exit code 1) with output:
code....

I think what i need to do is update the certifcate for the apache2, but I'm not sure how to do this, where to put it, and then which of the thousand apache config lines needs to be changed

View 5 Replies View Related

Fedora :: TOR Onion Routing - Set Proxy For HTTP And HTTPS In Firefox But Say's 'unknown Proxy'

Jul 7, 2010

I've been trying to make myself anonymous, but I cant find 'Tor' anywhere, tried 'yum & kpackagekit' neither have it. I did find 'Privoxy', installed it, set proxy for HTTP and HTTPS in Firefox, but it says 'unknown proxy' when I try to use it! I've been to the Privoxy web site and read through the 'User manual', but most of it is 'geek' to me!

View 8 Replies View Related

Ubuntu :: Cannot Post On Forum - Click On "submit" To Post A Thread The Page Will Just Say "loading..."

Sep 28, 2010

For some odd reason, I cannot post on the ubuntu forum and the LinuxMint forum. Yea, I know.... the irony... I am using Mozilla and have tried Chromium, but that did not fix my problem. When I click on "submit" to post a thread, the page will just say "loading..." and nothing happens for a really long time. Does anyone know what is up? I tried posting on one other forum that I go to often and it seems to work out fine. I haven't tried any other forums though.

View 7 Replies View Related

Ubuntu :: 10.04 - Unable To Connect To Cisco VPN

Aug 31, 2010

I am trying to configure and connect Cisco VPN on Ubuntu 10.04. I've imported .pcf file. The new vpn conn appears in the VPN Connections option. Now when I select it, it doesn't connect. Nothing happens. I am not able to connect to VPN at all. I tried using kvpnc as well but it didn't work either.

View 1 Replies View Related

Red Hat :: Cisco VPN Client Always Down

Jun 24, 2010

I'm Linux beginner. I have cisco vpnclient always down I need to run it automatically when it is down.

View 1 Replies View Related

Ubuntu :: Cannot Uninstall Cisco AnyConnect VPN Client

Mar 4, 2010

In order to gain access to my university network remotely I was asked to open a website that would act as a gateway. Upon opening the site I was asked to run a Java application, which installed a Cisco AnyConnect VPN client on the system. However, now I do not need this, but I cannot find a way to uninstall it. It does not appear in the Synaptic Manager or the the ubuntu Software centre, so I cannot find the package to uninstall it. The software does appear in the 'Internet' section in the Application drop down menu and runs without the need of Firefox. I read the Cisco release notes but I could not find a way to uninstall the software.

View 3 Replies View Related

Ubuntu :: Connecting To Cisco Device With Gtkterm?

Mar 19, 2010

Code:

dmesg | grep tty
[ 0.002489] console [tty0] enabled
[ 0.956262] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 0.956684] 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A

I configured /dev/ttyS0 in port setting in gtkterm, but I get error "Cannot open /dev/ttyS0 : No such device or address" yes I'm opening the terminal as

Code:

sudo gtkterm

View 1 Replies View Related

Ubuntu :: 10.10 - Any Updated Guide For Cisco VPN Client

Oct 12, 2010

Any updated guides anyone know of that works with Ubuntu 10.10 to get Cisco VPN Client (not Anyconnect) working with the latest version of Ubuntu?

View 4 Replies View Related

Ubuntu :: Cisco AnyConnect VPN Client Broken

Dec 2, 2010

Well I right clicked on the icon on my desktop and by accident when I wanted to copy the command the starts the program i pasted something else on top of it! What I am trying to find out now is what the command is to make it work again. I got so far /opt/cisco/vpn/ but im missing the last part.

View 1 Replies View Related

Ubuntu Networking :: Connection Not Working Over Cisco VPN

Jan 12, 2011

I am using ubuntu 10.10 and facing problem with cisco VPN connection. VPN connection is getting successful but not able to connect to destination servers.I also tried to add default gw to the the IP which is assigned to my VPN connection but still access to VPN machines not working.

View 1 Replies View Related

Ubuntu :: Using Cisco VPN For Connecting To Office Network?

Feb 1, 2011

I followed [URL] to install and use Cisco VPN to connect to my office network. After importing the .pcf file, I am able to connect without any issues. However, once the connection is established, I am not able to either browse the internet or open any intranet sites. If I do ifconfig, I do not get a office IP however the tunnel IP shows up correctly. I am not sure what the issue is.

View 1 Replies View Related

Ubuntu Networking :: Use VPNC To Connect To A Cisco VPN?

Feb 28, 2011

I use VPNC to connect to a Cisco VPN. I am able to connect, but some issues exist when I use SSH. For example, I login through SSH to a computer in the VPN and I execute ls => it works. If I execute ls -la => connection stalls. I think it stalls every time it is supposed to return more content (top, ls /etc).

If I do scp from my end to server => works. If I do scp from server to my end => connection stalls.

View 1 Replies View Related

Ubuntu Networking :: Installing Cisco VPN Client On 11.04

May 7, 2011

I'm trying to install the Cisco VPN client on Ubuntu 11.04, kernel version 2.6.38-8 generic-pae. I need a step by step process since I am an absolute beginner with Ubuntu and this is my first install on the operating system. I have already tried the network manager but connection always fails. I have also tried the website [URL] but this always fails, seems this was made for earlier versions of Ubuntu and earlier kernel versions.

View 9 Replies View Related

Ubuntu :: SoftPhone - Connect Over Client VPN To Cisco

Aug 4, 2011

I am looking for a softphone that I can connect over a client VPN to my cisco uc520. It works great in windows. Does anyone know of one that works? Cisco doesn't seem to have one that runs in linux.

View 3 Replies View Related

Ubuntu Networking :: Driver For Cisco MPI 350 Wireless (Airo)

Feb 11, 2010

Put all Cisco drivers and firmware for wireless in a new ubuntu 10.04. I love ubuntu and I have a big problem with a mini pci wireless Cisco Airo MPI 350...

View 9 Replies View Related

Ubuntu :: Download Link For Cisco AnyConnect VPN Client?

May 15, 2010

I need Cisco AnyConnect VPN client for Ubuntu. Where can I download it? Please give me the link.

View 5 Replies View Related







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