Help
RSS
API
Feed
Maltego
Contact
Domain > mahatma-haus.ch
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-01-10
212.40.5.43
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Fri, 10 Jan 2025 15:35:17 GMTServer: Apache/1.3.41 (Unix) PHP/4.4.9 FrontPage/5.0.2.2623 mod_fastcgi/2.4.6Last-Modified: Tue, 27 Dec 2022 14:09:55 GMTETag: ff7c18a1-2957-63aafcb3Accept-Ranges: bytesContent-Length: 10583Content-Type: text/html !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//ENhttp://www.w3.org/TR/html4/loose.dtd>html>head>meta http-equivContent-Type contenttext/html; charsetiso-8859-1>meta namekeywords contentPriska, Arnold, Arnold-Dinkel, Basel, Esoterik, Lichtkörper, Lichtkörperarbeit, Seminare, Spirituelle Beratung, Lebensberatung, Kristallkarten, Essenzen, Aqua-Aura-Kristalle, Literatur, CD, Bachblüten, Energieflussbehandlung, Geistheilung, Farbtherapie, Mahatma, Ra Menora, Meditation, Aura, Karma, Kundalini, Mantra, Merkabah, Walk-In, Ätherische Körper, Ich-Bin-Gegenwart, Spiritualität, Geisteswissenschaft, Bewusstsein, Dimensionen, Dimensionswechsel, 12 Strahlen, 7 Strahlen, Transformation, ätherische Implantate, Bewusstseinskanal, Initiation, Polarität, Ego, Seele, Seelenebene, Hohes Selbst, Überseele, Monade, Quellenebene, Aufgestiegene Meister, Kosmischer Tag, Persönlichkeitsebene, geistige Gesetze, Resonanz, Gnade, Evolution, Multidimensionalität, Vywamus, Sananda, Sanat Kumara, St. Germain, Micah Sophus, Integration, Gottesbewusstsein>title>Mahatma-Haus/title>link relshortcut icon hreffavicon_.ico>!-- TemplateEndEditable -->style typetext/css>!--body { background-image: url(back.jpg);}body,td,th { font-family: Georgia, Times New Roman, Times, serif; color: #000099;}.Stil21 {font-size: small}.Stil24 {font-family: Georgia, Times New Roman, Times, serif; font-size: medium; }.Stil25 {font-size: medium}.Stil29 { font-size: large; font-weight: bold;}.Stil26 { font-size: x-large; color: #9900FF;}.Stil31 {font-size: small; color: #000099; }.Stil32 {font-family: Georgia, Times New Roman, Times, serif; font-size: medium; color: #000099; }.Stil33 { color: #990099; font-weight: bold; font-size: large;}-->/style>script languageJavaScript typetext/JavaScript>!--function MM_preloadImages() { //v3.0 var ddocument; if(d.images){ if(!d.MM_p) d.MM_pnew Array(); var i,jd.MM_p.length,aMM_preloadImages.arguments; for(i0; ia.length; i++) if (ai.indexOf(#)!0){ d.MM_pjnew Image; d.MM_pj++.srcai;}}}//-->/script>/head>div iddot0 styleposition: absolute; visibility: hidden; height: 14; width: 14;> img srcgelber_stern_1.gif height14 width14>/div>div iddot1 styleposition: absolute; height: 14; width: 14;> img srcgelber_stern_1.gif height14 width14>/div>div iddot2 styleposition: absolute; height: 14; width: 14;> img srcgelber_stern_2.gif height14 width14>/div>div iddot3 styleposition: absolute; height: 14; width: 14;> img srcgelber_stern_3.gif height14 width14>/div>div iddot4 styleposition: absolute; height: 14; width: 14;> img srcgelber_stern_4.gif height14 width14>/div>div iddot5 styleposition: absolute; height: 14; width: 14;> img srcgelber_stern_5.gif height14 width14>/div>script LANGUAGEJavaScript>!-- hide code/*Elastic Trail script (By Philip Winston @ pwinston@yahoo.com, URL: http://www.geocities.com/pwinston/)Script featured on Dynamicdrive.comFor this and 100s more DHTML scripts, visit http://dynamicdrive.com*/var nDots 6;var Xpos 0;var Ypos 0; // fixed time step, no relation to real timevar DELTAT .01; // size of one spring in pixelsvar SEGLEN 10; // spring constant, stiffness of springsvar SPRINGK 10; // all the physics is bogus, just picked stuff to // make it look okayvar MASS 1;// Positive XGRAVITY pulls right, negative pulls left// Positive YGRAVITY pulls down, negative upvar XGRAVITY 0;var YGRAVITY 50;// RESISTANCE determines a slowing force proportional to velocityvar RESISTANCE 10; // stopping criterea to prevent endless jittering // doesnt work when sitting on bottom since floor // doesnt push back so acceleration always as big // as gravityvar STOPVEL 0.1;var STOPACC 0.1;var DOTSIZE 11; // BOUNCE is percent of velocity retained when // bouncing off a wallvar BOUNCE 0.75;var isNetscape navigator.appNameNetscape; // always on for now, could be played with to // let dots fall to botton, get thrown, etc.var followmouse true;var dots new Array();init();function init(){ var i 0; for (i 0; i nDots; i++) { dotsi new dot(i); } if (!isNetscape) { // I only know how to read the locations of the // LI> items in IE //skip this for now // setInitPositions(dots) } // set their positions for (i 0; i nDots; i++) { dotsi.obj.left dotsi.X; dotsi.obj.top dotsi.Y; } if (isNetscape) { // start right away since they are positioned // at 0, 0 startanimate(); } else { // let dots sit there for a few seconds // since theyre hiding on the real bullets setTimeout(startanimate(), 1000); }}function dot(i) { this.X Xpos; this.Y Ypos; this.dx 0; this.dy 0; if (isNetscape) { this.obj eval(document.dot + i); } else { this.obj eval(dot + i + .style); }}function startanimate() { setInterval(animate(), 20);}// This is to line up the bullets with actual LI tags on the page// Had to add -DOTSIZE to X and 2*DOTSIZE to Y for IE 5, not sure why// Still doesnt work greatfunction setInitPositions(dots){ // initialize dot positions to be on top // of the bullets in the ul> var startloc document.all.tags(LI); var i 0; for (i 0; i startloc.length && i (nDots - 1); i++) { dotsi+1.X startloci.offsetLeft startloci.offsetParent.offsetLeft - DOTSIZE; dotsi+1.Y startloci.offsetTop + startloci.offsetParent.offsetTop + 2*DOTSIZE; } // put 0th dot above 1st (it is hidden) dots0.X dots1.X; dots0.Y dots1.Y - SEGLEN;}// just save mouse position for animate() to usefunction MoveHandler(e){ Xpos e.pageX; Ypos e.pageY; return true;}// just save mouse position for animate() to usefunction MoveHandlerIE() { Xpos window.event.x + document.body.scrollLeft; Ypos window.event.y + document.body.scrollTop; }if (isNetscape) { document.captureEvents(Event.MOUSEMOVE); document.onMouseMove MoveHandler;} else { document.onmousemove MoveHandlerIE;}function vec(X, Y){ this.X X; this.Y Y;}// adds force in X and Y to spring for doti on dotjfunction springForce(i, j, spring){ var dx (dotsi.X - dotsj.X); var dy (dotsi.Y - dotsj.Y); var len Math.sqrt(dx*dx + dy*dy); if (len > SEGLEN) { var springF SPRINGK * (len - SEGLEN); spring.X + (dx / len) * springF; spring.Y + (dy / len) * springF; }}function animate() { // dots0 follows the mouse, // though no dot is drawn there var start 0; if (followmouse) { dots0.X Xpos; dots0.Y Ypos; start 1; } for (i start ; i nDots; i++ ) { var spring new vec(0, 0); if (i > 0) { springForce(i-1, i, spring); } if (i (nDots - 1)) { springForce(i+1, i, spring); } // air resisitance/friction var resist new vec(-dotsi.dx * RESISTANCE, -dotsi.dy * RESISTANCE); // compute new accel, including gravity var accel new vec((spring.X + resist.X)/MASS + XGRAVITY, (spring.Y + resist.Y)/ MASS + YGRAVITY); // compute new velocity dotsi.dx + (DELTAT * accel.X); dotsi.dy + (DELTAT * accel.Y); // stop dead so it doesnt jitter when nearly still if (Math.abs(dotsi.dx) STOPVEL && Math.abs(dotsi.dy) STOPVEL && Math.abs(accel.X) STOPACC && Math.abs(accel.Y) STOPACC) { dotsi.dx 0; dotsi.dy 0; } // move to new position dotsi.X + dotsi.dx; dotsi.Y + dotsi.dy; // get size of window var height, width; if (isNetscape) { height window.innerHeight + window.pageYOffset; width window.innerWidth + window.pageXOffset; } else { height document.body.clientHeight + document.body.scrollTop; width document.body.clientWidth + document.body.scrollLeft; } // bounce off 3 walls (leave ceiling open) if (dotsi.Y > height - DOTSIZE - 1) { if (dotsi.dy > 0) { dotsi.dy BOUNCE * -dotsi.dy; } dotsi.Y height - DOTSIZE - 1; } if (dotsi.X > width - DOTSIZE) { if (dotsi.dx > 0) { dotsi.dx BOUNCE * -dotsi.dx; } dotsi.X width - DOTSIZE - 1; } if (dotsi.X 0) { if (dotsi.dx 0) { dotsi.dx BOUNCE * -dotsi.dx; } dotsi.X 0; } // move img to new position dotsi.obj.left dotsi.X; dotsi.obj.top dotsi.Y; }}// end code hiding -->/script>body>table width70% border0 aligncenter> tr> td>div aligncenter>img width701 height23 border0 srcbalken.gif>/div>/td> /tr> tr> td>div aligncenter>/div>/td> /tr> tr> td>div aligncenter>img srcmahatma_haus.gif width440 height73>/div>/td> /tr> tr> td> /td> /tr> tr> td> /td> /tr> tr> td>p aligncenter>Meine Lieben/p> p aligncenter> em>Alles hat seine Zeit und alles ist immer gut so, wie es ist./em>/p> p aligncenter>Ich möchte Euch daher an dieser Stelle mitteilen, dass ich mich entschlossen habe, altershalber neben allem andern auch den Verkauf der Mahatma-Hilfsmittel einzustellen. /p> p aligncenter>Ich bin sicher, dass mittlerweile alle ihren eigenen Weg gefunden haben, die Mahatma-Energie in ihrem Leben zu integrieren./p> p aligncenter>br> Ich segne Euch alle und sende Euch die Liebe Mahatmas aus meinem Herzen. /p> p aligncenter> Priska Arnold/p>/td> /tr> tr> td> /td> /tr>/table>p aligncenter> /p>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]