Mars
Parkrocker
Auf http://www.seat.de gibts noch einige 100 Tickets für Rock im Park zum Orginalpreis!!!
Krass, die bieten sogar noch Ring-Tickets an. Sollte man denen drüben im Ringrocker-Forum auch erzählen.
Auf http://www.seat.de gibts noch einige 100 Tickets für Rock im Park zum Orginalpreis!!!
Mir persönlich wäre das zu heiss
Gruß
Marco
Das klingt mir sehr suspekt, vor allem haben sie mir, wahrscheinlich ausversehn komplett die selbe E-Mail geschrieben nur statt RiP stand da Euro12, obwohl ich gar keine Karten dafür bestellt hatte.
Hat jemand damit Erfahrung ?
Kommt mir sehr bekannt vor. Vor allem das mit dem Betreff "Euro 2012"!
Habe beim englischen Anbieter "citysportsonline.com" Tickets bestellt, allerdings per Überweisung bezahlen wollen. Daraufhin kam eine Mail:
Von: Sales Sales [mailto:sales@citysportsonline.com]
Gesendet: Montag, 12. März 2012 17:15
An: xxxxxxxxxxxxxx@gmx.net
Betreff: RE EURO 2012
Dear Michael,
Thanks for booking your Rock am park tickets with us. We are glad to inform you that your order has been successfully booked while your payment is pending. Please find given below the details for making your payment.
...
Please give reference XXXX while making the payment. Giving your order number as reference while making payment makes it easier to locate your payment for the accounts team and you will get an early confirmation.
Please confirm us back by sending email soon after you have done the payment so as to enable us update our records and confirm your order.
Best regards,
sandra Love
Customer support department
Man beachte auch den identischen Begriff "Customer support department".
Paypal wollten sie nicht akzeptieren, also habe ich die Finger davon gelassen, bevor ich mir die Finger dran verbrenne.
Hey, wegen der Sache mit gefälschten eventim-Tickets habe ich die letzten zwei Tage mal einen kleinen Webservice programmiert, wo man die Ticketnummer eingeben kann (die unter dem Barcode steht) und einem dann die Informationen zu dieser Nummer (Veranstaltungsname und Veranstaltungsdatum) angezeigt werden.
Das ganze ist erreichbar unter....... Bitte beachtet, dass es zwischen Eingabe der Nummer und Anzeige der Informationen einen kurzen Moment dauert.
Für die Techniker unter euch:
Es gibt auf der Homepage auch eine Beschreibung, wie man den Service als Programmierer ausnutzen kann. Wer Zeit und Lust hat, kann sich ja mal an einer Android-App versuchen.
Außerdem könnt ihr, auch auf der Seite, den Quelltext des Programms runterladen. Habe das Programm unter GPL lizenziert.
<?php
include_once(dirname(__FILE__)."/includes/config.inc.php");
class TicketCheck {
private $ch;
/***
* Constructor of TicketCheck.
* Will open up a new curl-object with the below provided options.
*/
public function TicketCheck() {
$this->ch = curl_init();
curl_setopt ($this->ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt ($this->ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($this->ch, CURLOPT_BINARYTRANSFER, true);
curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($this->ch, CURLOPT_COOKIEJAR, "cookies.txt");
}
/***
* The function login has to be called to perform a login at fansale.
*/
public function login() {
$config = new Configuration();
$user = urlencode($config->getUser());
$password = urlencode($config->getPassword());
$postFields = "username=".$user."&password=".$password;
curl_setopt($this->ch, CURLOPT_URL, "https://www.fansale.de/fansale/security_check?check=");
curl_setopt($this->ch, CURLOPT_POST, 2);
curl_setopt($this->ch, CURLOPT_POSTFIELDS, $postFields);
return curl_exec($this->ch);
}
/***
* Will take the barcode from an eventim ticket and get the related information out of the fansale system.
* Before calling this function it is necessary to call the login function.
*/
public function getEvent($barcode) {
$barcode = urlencode($barcode);
$startTime = time()+600;
$endTime = $startTime + 3600;
$formattedStartDate = date("d.m.Y", $startTime);
$formattedEndDate = date("d.m.Y", $endTime);
$formattedStartTime = date("H:i", $startTime);
$formattedStartTime= urlencode($formattedStartTime);
$formattedEndTime = date("H:i", $endTime);
$formattedEndTime = urlencode($formattedEndTime);
$postFields = "_page=2&offer.barcode%5B1%5D=".$barcode."&offer.seatCategorie=1&offer.categorie=2&offer.shortDesc=bla&offer.startPrice=20000&offer.sellingFormat=FIXPRICE&offer.buynowprice=20000&offer.formattedStartDate=".$formattedStartDate."&offer.formattedStartTime=".$formattedStartTime."&offer.formattedEndDate=".$formattedEndDate."&offer.formattedEndTime=".$formattedEndTime."&auction=create&non_certified=false";
curl_setopt($this->ch, CURLOPT_URL, "https://www.fansale.de/fansale/createOffer.htm?");
curl_setopt($this->ch, CURLOPT_POST, 14);
curl_setopt($this->ch, CURLOPT_POSTFIELDS, $postFields);
return curl_exec($this->ch);
}
}
?>
Wir verwenden essentielle Cookies, damit diese Website funktioniert, und optionale Cookies, um den Komfort bei der Nutzung zu verbessern und Funktionen von Drittanbietern bereitzustellen.
Konfiguriere deine Einstellungen und erhalte weitere Informationen