tracking.fracht.com.au
Open in
urlscan Pro
180.235.158.120
Public Scan
Submitted URL: https://tracking.fracht.com.au/
Effective URL: https://tracking.fracht.com.au/Login/Login.aspx?ReturnUrl=%2fDefault.aspx
Submission: On July 22 via automatic, source certstream-suspicious — Scanned from AU
Effective URL: https://tracking.fracht.com.au/Login/Login.aspx?ReturnUrl=%2fDefault.aspx
Submission: On July 22 via automatic, source certstream-suspicious — Scanned from AU
Form analysis
1 forms found in the DOMPOST ./Login.aspx?ReturnUrl=%2fDefault.aspx
<form method="post" action="./Login.aspx?ReturnUrl=%2fDefault.aspx" id="Form1">
<div class="aspNetHidden">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="igAyGZ8HXe3wj9g+Vu+s2tlRhvrkKmHngnqRICoBssDbKEX5G+nCBMaxHDaKSSkPbsWMthgx0BXse/DaRCNWcWTcZr1s1cy36qo6Hg035KVfKkD7nlQRyJ10QEnTpW2tF73uJSgipO4HUmaIYPl8pg/zFEk=">
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['Form1'];
if (!theForm) {
theForm = document.Form1;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZOSHA0Z0Hes9nbjBifD9uk7QeaP5WPNAXyeEQxLIunfwx5GWHw2&t=638460634960000000" type="text/javascript"></script>
<script>
function AttachToScrollEvent(EventHandlerFunction) {
if (window.addEventListener) // Firefox 1+, Opera 9, Safari 3+, etc.
{
window.addEventListener("scroll", EventHandlerFunction, false);
} else if (document.addEventListener) // Opera 7, Opera 8
{
document.addEventListener("scroll", EventHandlerFunction, false);
} else if ("onscroll" in self) // MSIE 6, 7 and MSIE 8
{
var oldonscroll = self.onscroll;
if (typeof self.onscroll != 'function') {
self.onscroll = EventHandlerFunction;
} else {
self.onscroll = function() {
if (oldonscroll) {
oldonscroll();
}
EventHandlerFunction();
}
}
};
}
function AttachToResizeEvent(EventHandlerFunction) {
if (window.addEventListener) // Firefox 1+, Opera 9, Safari 3+, etc.
{
window.addEventListener("resize", EventHandlerFunction, false);
} else if (document.addEventListener) // Opera 7, Opera 8
{
document.addEventListener("resize", EventHandlerFunction, false);
} else if ("onresize" in self) // MSIE 6, 7 and MSIE 8
{
var oldonresize = self.onscroll;
if (typeof self.onresize != 'function') {
self.onresize = EventHandlerFunction;
} else {
self.onresize = function() {
if (oldonresize) {
oldonresize();
}
EventHandlerFunction();
}
}
};
}
function DisablePage() {
var PageSmokeScreen = $('_PageSmokeScreen');
if (PageSmokeScreen) {
var DocumentSize = documentSize();
$(PageSmokeScreen).setStyle('left', '0px');
$(PageSmokeScreen).setStyle('top', '0px');
$(PageSmokeScreen).setStyle('width', DocumentSize.width + 'px');
$(PageSmokeScreen).setStyle('height', DocumentSize.height + 'px');
$(PageSmokeScreen).setStyle('z-index', '1500');
$(PageSmokeScreen).setStyle('display', 'block');
}
}
function EnablePage() {
var PageSmokeScreen = $('_PageSmokeScreen');
if (PageSmokeScreen) {
$(PageSmokeScreen).setStyle('z-index', 0);
$(PageSmokeScreen).setStyle('display', 'none');
}
}
</script>
<script>
function DebugConsole_NewMessage(Message) {}
function DebugConsole_Clear() {}
</script>
<script>
function PositionLightBox() {
var LightBox = $('_LightBox');
if (LightBox) {
var LightBoxLeft = posLeft() + (pageWidth() - parseInt(LightBox.getStyle('width'))) / 2;
var LightBoxTop = posTop() + 300;
if (LightBoxLeft < 0) {
LightBoxLeft = 0;
}
$(LightBox).setStyle('left', LightBoxLeft + 'px');
$(LightBox).setStyle('top', LightBoxTop + 'px');
}
}
function ShowLightBox(Title, Message, Buttons, ResponseHolderID, AutoPostBack, ImageURL) {
var LightBox = $('_LightBox');
if (LightBox) {
var LightBoxMessage = $('MessageBox');
var TitleBoxMessage = $('TitleBox');
var LightBoxButtons = $('ButtonBox');
if (LightBoxMessage && LightBoxButtons && TitleBoxMessage) {
TitleBoxMessage.innerHTML = Title;
var MessageHTML = '<span class="LightBoxMessageText">' + Message + '</span>';
if (ImageURL != null && ImageURL != '') {
MessageHTML = '<table cellpading="0" cellspacing="0"><tr><td valign="top" valign="center" width="50"><img src="' + ImageURL + '" alt=""></td><td valign="top" align="center">' + MessageHTML + '</td></tr></table>';
}
LightBoxMessage.innerHTML = MessageHTML;
var ButtonElement;
var ButtonsHTML = '';
var ButtonID = '';
var FirstButtonID = '';
for (var i = 0; i < Buttons.length; i++) {
ButtonID = 'ButtonBox_' + i;
if (i == 0) {
FirstButtonID = ButtonID;
}
ButtonElement = '<input type="button" id="' + ButtonID + '" value="' + Buttons[i].caption + '" style="width: 100px;height:25px;margin:5px;" onclick="HideLightBox(); ' + Buttons[i].onclick + '">';
ButtonsHTML = ButtonsHTML + ButtonElement;
}
LightBoxButtons.innerHTML = ButtonsHTML;
DisablePage();
PositionLightBox();
$(LightBox).setStyle('z-index', '1700');
$(LightBox).setStyle('display', 'block');
setTimeout("SetFocusOnLightBoxButton('" + FirstButtonID + "');", 500);
}
}
}
function SetFocusOnLightBoxButton(ButtonID) {
try {
$(ButtonID).focus();
} catch (e) {}
}
AttachToScrollEvent(PositionLightBox);
AttachToResizeEvent(PositionLightBox);
function HideLightBox() {
var LightBox = $('_LightBox');
if (LightBox) {
$(LightBox).setStyle('display', 'none');
}
EnablePage();
}
</script>
<script src="/Runtime/Enterprise_ZArchitecture_Web_GUI/24_4_19_599/ZPage/mootools.js"></script>
<script src="/Runtime/Enterprise_ZArchitecture_Web_GUI/24_4_19_599/ZPage/ZScreen.js" type="text/javascript"></script>
<script src="/Runtime/Enterprise_ZArchitecture_Web_GUI/24_4_19_599/ZPage/ZPage.js" type="text/javascript"></script>
<script>
var originalDoPostBack;
function customDoPostBack(eventTarget, eventArgument) {
var performPostBack = true;
if (getElement(eventTarget)) {
try {
var postbackCondition = getElement(eventTarget).getProperty('postbackCondition');
performPostBack = evaluateTrueFalseFunction(postbackCondition)
} catch (e) {}
}
if (performPostBack) {
PositionIndicatorImage();
originalDoPostBack(eventTarget, eventArgument);
}
}
function evaluateTrueFalseFunction(functionCode) {
if (functionCode && functionCode != '' && functionCode != 'undefined') {
var newFunction = new Function(functionCode);
try {
return newFunction();
} catch (e) {}
}
return true;
}
function setupPostBackHandlers() {
originalDoPostBack = __doPostBack;
__doPostBack = customDoPostBack;
}
addLoadEvent(setupPostBackHandlers);
function PositionIndicatorImage() {
try {
var Indicator = $('ctl00_img');
if (Indicator) {
Indicator.style.top = (posTop() + (pageHeight() - 20) / 2) + "px";
Indicator.style.left = (posLeft() + (pageWidth() - 20) / 2) + "px";
}
} catch (err) {}
}
</script>
<script src="/Runtime/Enterprise_ZArchitecture_Web_GUI/24_4_19_599/IWebServiceMethod/WebServiceMethod.js" type="text/javascript"></script>
<script src="/Runtime/Enterprise_ZArchitecture_Web_GUI/24_4_19_599/IWebServiceMethod/CalculateVolumeWebServiceMethod.js" type="text/javascript"></script>
<script>
function ClearValidation(NotificationID) {
var Notification = getElement(NotificationID);
if (Notification != null) {
Notification.setStyle('display', 'none');
}
return true;
}
</script>
<script type="text/javascript">
function autoSizeIframe(frameId) {
try {
var iframe = parent.document.getElementById(frameId);
var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
var objToResize = (iframe.style) ? iframe.style : iframe;
objToResize.height = innerDoc.body.offsetHeight + GetMarginsSize(innerDoc.body);
} catch (err) {
window.status = err.message;
}
}
function GetMarginsSize(control) {
var margins = 0;
var marginTop;
var marginBottom;
if (control.currentStyle) {
marginTop = control.currentStyle.marginTop;
marginBottom = control.currentStyle.marginBottom;
} else {
marginTop = control.getStyle('margin-Top');
marginBottom = control.getStyle('margin-Bottom');
}
if (marginTop) {
margins = parseInt(marginTop);
}
if (marginBottom) {
margins = margins + parseInt(marginBottom);
}
return margins;
}
</script>
<script language="javascript">
var intervalset = window.setInterval('Redirect()', 3600000);
function Redirect() {
if (window.location.href.toLowerCase().indexOf('login.aspx') < 0) {
window.clearInterval(intervalset);
alert('Your session has expired due to inactivity.');
window.parent.location.replace('/Logout.aspx');
}
}
</script>
<script src="/Runtime/Enterprise_ZArchitecture_Web_GUI_Ajax/24_4_19_599/AJAXManager/ajax-script.v2.js" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=NJmAwtEo3Ipnlaxl6CMhvvkj6tUu9qURLGAy3HVe6IxsabN_8H4dfVoD_UNJyfvxCIg1J0OTGz9NvQ1OU7lllY6O5wV2oxKLbEoLxzMADCazHF7lrustXC7_rlDN4BkPiGbiUR_lfImlo0rEKziuZGKRK9Y1&t=74258c30" type="text/javascript"></script>
<script src="/ScriptResource.axd?d=dwY9oWetJoJoVpgL6Zq8OAq8wOOOwzsvbwodliLVnY1KReJQxSZYPsJlE3elgDUDhldJf4F5sdfk5iAGwovONRCE92ZTv-GKjcTzXuTeaFeZYk7l2_IFX7DEfq-9IWdqgrh1IclKEiV-TiqZMiSIDHcfidE1&t=74258c30" type="text/javascript"></script>
<script src="/WebService/WebServiceShared.asmx/js" type="text/javascript"></script>
<script>
var DisabledButtons = new Array();
DisabledButtons[0] = 'SigninBtn';
DisabledButtons[1] = 'FindBtn';
</script>
<div id="pagehead">
<div id="topbar1">
<div id="topbar2"><a id="ctl02_EDITracBanner1_LogoImage" title="Fracht Australia Pty Ltd" class="LogoImage" href="http://www.fracht.com.au"><img title="Fracht Australia Pty Ltd" src="/Images/Logo.gif" alt=""></a></div>
</div>
</div>
<div id="ctl02_menu"></div>
<input type="hidden" name="Testing" id="Testing"><input type="hidden" name="__BEFORELASTFOCUSID" id="__BEFORELASTFOCUSID" value=""><input type="hidden" name="__LASTFOCUSID" id="__LASTFOCUSID" value=""><input type="hidden" name="__UPDATELASTFOCUSID"
id="__UPDATELASTFOCUSID" value=""><span>
<script type="text/javascript">
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$sm', 'Form1', ['tctl00$ctl01', ''], [], [], 300, '');
//]]>
</script>
<div id="ctl00_updProgress" style="display:none;" role="status" aria-hidden="true">
<img id="ctl00_img" src="/Runtime/Enterprise_ZArchitecture_Web_GUI_Ajax/24_4_19_599/AJAXManager/ajax-indicator.gif" style="position:absolute;z-index:1000;left:50%;top:50%;">
</div>
<div style="height:13px;display:none;">
<div id="ctl00_ctl01">
<div id="ctl00_ValidationControls"></div>
</div>
</div>
</span>
<div id="OuterContentPane">
<div id="loginBox" class="loginBox">
<div id="CompanyCode"> Company Code:<br>
<input name="CompanyCodeTextBox" type="text" maxlength="12" id="CompanyCodeTextBox" onchange="ClearValidation('CompanyCodeTextBox_NotificationID')">
<br>
</div> E-mail:<br>
<input name="LoginNameTextBox" type="text" maxlength="254" id="LoginNameTextBox" onchange="ClearValidation('LoginNameTextBox_NotificationID')">
<br> Password:<br>
<input name="PasswordTextBox" type="password" maxlength="1024" id="PasswordTextBox" onchange="ClearValidation('PasswordTextBox_NotificationID')">
<br>
<input id="ZCheckBox1" type="checkbox" name="ZCheckBox1"><label for="ZCheckBox1">Remember me</label>
<br>
<br>
<input type="submit" name="SigninBtn" value="Login" id="SigninBtn"> <span id="Message" class="ErrorMessage"></span>
<br>
<a id="PasswordReminder" href="/Login/ForgotPassword.aspx">Forgot your password?</a>
</div>
<br>
<br>
<br>
<br>
</div>
<div id="_LightBox" class="LightBox" style="display:none;position:absolute;">
<div id="TitleBox" class="LightBoxTitle">
</div>
<table class="LightBoxMessage">
<tbody>
<tr>
<td align="center" valign="top">
<div id="MessageBox">
</div>
</td>
</tr>
<tr>
<td align="center" valign="middle">
<div id="ButtonBox">
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="PageFooter"><span>© <a href="http://www.wisetechglobal.com">WiseTech Global</a> 2024. All rights reserved. </span><span id="LanguageSelection">Language: <select name="LanguageList" id="LanguageList"
onchange="changeLanguage(this.options[this.selectedIndex].value);">
<option selected="selected" value="EN">English</option>
<option value="ES-ES">Español</option>
<option value="DE-DE">Deutsch</option>
</select></span></div>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1806D926">
<input type="hidden" name="__SCROLLPOSITIONX" id="__SCROLLPOSITIONX" value="0">
<input type="hidden" name="__SCROLLPOSITIONY" id="__SCROLLPOSITIONY" value="0">
<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="">
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
value="DDQgFWw8dDptoXBje4Ir3nH3dtGGmrpHvRXtlFXeFsmVk3TuKYq4p950IoQJe73mvDvL9cPcOKMYCBpytkZnOOWn5LATEvBfk4I6pQ/kuaLuKxlH4Dc3PmTHgUtRG+4ZkjEK3fcbjfncUMSbZKSCw9MIVEDCEr/9U52MHp2dfM2gzF4K1SLPYxiFVRGa8QYjxZw1EAcwOl4B0g8hqau+MHYJImB/45z/5KmyotiVbYpW2c2MIjZqX1Sb/uGbWyaSd33KLqDh9MP4XbmVDb3C5y4JlSQ=">
</div>
<script type="text/javascript">
//<![CDATA[
theForm.oldSubmit = theForm.submit;
theForm.submit = WebForm_SaveScrollPositionSubmit;
theForm.oldOnSubmit = theForm.onsubmit;
theForm.onsubmit = WebForm_SaveScrollPositionOnSubmit;
Sys.Application.add_init(function() {
$create(Sys.UI._UpdateProgress, {
"associatedUpdatePanelId": null,
"displayAfter": 200,
"dynamicLayout": true
}, null, null, $get("ctl00_updProgress"));
});
//]]>
</script>
</form>
Text Content
Company Code: E-mail: Password: Remember me Forgot your password? © WiseTech Global 2024. All rights reserved. Language: English Español Deutsch You do not have javascript enabled. This site requires javascript in order to operate correctly. Please enable javascript or add this site to the list of trusted sites. To enable javascript, do the following: 1. Select the Tools Menu in Internet Explorer 2. Select Internet Options 3. Select the Security tab 4. Click the Custom Level button 5. Scroll down to the Scripting heading 6. Select the enable option of Active Scripting 7. Click OK in all open dialogs For more detailed instructions regarding configuring trusted sites please click here.