Sabtu, 16 Januari 2016

How to Restore - Restore the Suspended Twitter Account


Memulihkan Akun Twitter yang Suspended
Suspended - One word that is scary for a Twitter account. Suspended will create your account suspended or no longer be able to make a tweet, follow and receive messages (Direct Message). The characteristics suspend accounts that you can still log into Twitter account following and followers but the number is 0, but the number of tweets fixed. For those of you who have some of the following, you should do some ways below. Previously, I suggest you who want to get a lot of Twitter followers should wear MassFollow manual still wearing IDs. You can get IDs Twitter blog Twitter ID. Last Sunday my Twitter account suspended, after wearing AutoFollow. AutoFollow can make your Twitter account was suspended because AutoFollow form of Twitter applications that require access to your Twitter account. Access is exactly what can make your account suspended, because such access can create your account automatically follow several accounts specified by the application. Following recovery twitter account suspended.

Tutorial 

  1. Please enter https://support.twitter.com/forms/general?subtopic=suspended 
  2. Fill in all required textbox
You can copy and paste the description of problems that I use
    Hey Twitter, I'm @Novalbintangs... My Account was suspended and I don't know my fault. Please bring my account back. I need it so much
  1. click Submit
  2. Open your email listed on the form
  3. Wait a few minutes until no email replies from Twitter
  4. Then reply with the following fields, or you can reply with different words
I understand your policies and will not engage in any prohibited following behavior. Please, I miss and need my account
Wait a few days, God willing InsyaAllah can recover :)

Creating Subdomains To Blogspot

Good evening Hack4rt friends, today I will give you a tutorial on how to create a subdomain for you have earned and bought a domain. Suppose you have a domain and you want to give a free subdomain to friends or associates you with cms blogspot. Well this time I will give you a tutorial on how to setup hosting and bloggers to create a subdomain at blogger.
Previously I advise you to use a domain with hosting in order to vary the DNS more easily and can provide a file manager (additional) benefit your site. I suggest to use free hosting for agan who do not want to spend additional money. For a tutorial using a free domain hosting for bloggers to see here. I suggest also to use idhostinger the nameserver:
  • ns1.idhostinger.com
  • ns2.idhostinger.com
  • ns3.idhostinger.com
  • ns4.idhostinger.com

Well, if all is ready (domain and hosting free), is now beginning the next stage to make a subdomain of blogspot.

/ * TUTORIAL BLOGGER * /
If you want to create subdomains eg "blog.domainanda.com" The first step is to get to the DNS CNAME Records in Hosting from Blogger. How to get the CNAME of bloggers:
From bloggers select a setting
  1.      Then click basis
  2.      In publishing click "+ Add Domain Special"
  3.      Click "Switch to advanced settings"
  4.      Empty boxes fill with "namasubdomain.namadomain.com"
  5.      Then click save
     It will be seen 2 CNAME

Example:


Membuat Subdomain Untuk Blogspot

Keep both the CNAME ...
We call it the upper left of the CNAME1.1
top right CNAME 1.2
bottom left CNAME 2.1
bottom right CNAME2.2


After that we go to hosting. For this tutorial I have not had to add pictures, sorry yaa gan: D
In particular CPanel hosting, try searching the name of the DNS Editor, or Advanced DNS zone or other records related to the DNS Records. If there ajaa click yaa gan.

Well, after getting into the DNS Editor will appear some information Records existing DNS on the domain as a CNAME, A, MX, NS, etc. we do now is create a new DNS CNAME Records with which we get from blogger. The trick is easy enough to add 2 DNS Records. here's how

At the top there is a textbox to add DNS Records that we want and how to charge for adding a subdomain to bloggers like this.


1. CNAME Pertama
Name : (Fill with CNAME 1.1)
TTL : 14400
Type : CNAME
CNAME : (Fill with CNAME 1.2)
(add record)

2. CNAME Second
Name : (Fill with CNAME 2.1)
TTL : 14400
Type : CNAME
CNAME : (Fill with CNAME 2.1)
  (add record)

Afterwards repeat the blogger and if after the click save in blogger is not out error and then manufacture CNAME subdomain WORKED: D
Finished, thank you for reading :)

Sourcecode PHP Mass Email Sender

This time sharing source code for php mass email sender mass email sender mass mailer freeware bulk email sender email sender for mass crack mac mac free mass email sender mass email sender mass email sender script download free software download mass email sender.
Mass Email Sender - Php Mailer
Mass Email Sender is sending mass emails (much) to multiple targets at once. It is used to facilitate the sending scam / spam / phishing / virus, etc. via email.
Mass Email Sender - Bulk Email Sender
To run the email sender you need is:
     1.Provide a hosting / domain to php file storage.
     2.Provide the email list and the contents of the email that will be sent.
     3.Run php sender's email.
Okay we just to the source code:
Mail to:
rnReply-To: $replytorn"; $header .= "MIME-Version: 1.0rn"; If ($file_name) $header .= "Content-Type: multipart/mixed; boundary=$uidrn"; If ($file_name) $header .= "--$uidrn"; $header .= "Content-Type: text/$contenttypern"; $header .= "Content-Transfer-Encoding: 8bitrnrn"; $header .= "$messagern"; If ($file_name) $header .= "--$uidrn"; If ($file_name) $header .= "Content-Type: $file_type; name="$file_name"rn"; If ($file_name) $header .= "Content-Transfer-Encoding: base64rn"; If ($file_name) $header .= "Content-Disposition: attachment; filename="$file_name"rnrn"; If ($file_name) $header .= "$contentrn"; If ($file_name) $header .= "--$uid--"; mail($to, $subject, "", $header); print "Email Terkirim!
"; flush(); } } } ?>
PHP Mailer
&copy Www.BinusHacker.Net
alert('Sending Completed\r\nTotal Email $numemails\r\n-Thanks To BinusHacker Family'); ";} ?>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php
 
@session_start();
@set_time_limit(0);
 
//PASSWORD CONFIGURATION
 
@$passwordlogin = $_POST['pass'];
$chk_login = true;
$passwordloginword = "binushackerfamily";
 
//END CONFIGURATION
 
if($passwordlogin == $passwordloginword)
{
$_SESSION['binushackersfamily'] = "$passwordlogin";
}
 
if($chk_login == true)
{
if(!isset($_SESSION['binushackersfamily']) or $_SESSION['binushackersfamily'] != $passwordloginword)
{
die("
<title>.:| Www.BinusHacker.Net - Mass Mailer |:.</title>
<center>
<table border=0 cellpadding=0 cellspacing=0 width=100% height=100%>
<tr><td valign=middle align=center>
<table width=100 bgcolor=black border=6 bordercolor=#444444>
   <tr><td>
<font size=1 face=verdana><center>
<b></font></a><br></b>
</center>
<form method=post>
<font size=1 face=verdana
color=red><strong><center>Mailer</center></strong><br>
<input type=password name=pass size=30>
</form>
<b>Host:</b> ".$_SERVER["HTTP_HOST"]."<br>
<b>IP:</b> ".gethostbyname($_SERVER["HTTP_HOST"])."<br>
<b>Your ip:</b> ".$_SERVER["REMOTE_ADDR"]."
</td></tr></table>
</td></tr></table>
");
}
}
if(isset($_POST['action'] ) ){
$action=$_POST['action'];
$message=$_POST['message'];
$emaillist=$_POST['emaillist'];
$from=$_POST['from'];
$replyto=$_POST['replyto'];
$subject=$_POST['subject'];
$realname=$_POST['realname'];
$file_name=$_POST['file'];
$contenttype=$_POST['contenttype'];
 
       $message = urlencode($message);
       $message = preg_replace('/"/', '"', $message);
       $message = urldecode($message);
       $message = stripslashes($message);
       $subject = stripslashes($subject);
}
?>
<html>
<head>
<title>.:: Mass Mailer | Www.BinusHacker.Net ::.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 
<style type="text/css">
<!--
.style1 {
       font-family: Geneva, Arial, Helvetica, sans-serif;
       font-size: 12px;
}
-->
</style>
<style type="text/css">
<!--
.style1 {
       font-size: 20px;
       font-family: Geneva, Arial, Helvetica, sans-serif;
}
body {
   background-color: #000000;
}
.style2 {font-family: Georgia, "Times New Roman", Times, serif}
.style3 {
   color: #FF0000;
   font-weight: bold;
}
.style4 {color: #999999}
-->
</style>
</head>
<body text="#ffffff">
<span class="style1">
<center><br>
<img src="http://farm9.staticflickr.com/8185/8377088218_4af8c23105_b.jpg">
</center>
<br></span></p>
<form name="form1" method="post" action="" enctype="multipart/form-data">
       <input type="hidden" name="action" value="send">
       <br>
<table width="100%" border="0">
   <tr>
     <td width="10%">
       <div align="right"><font size="-3" face="Verdana, Arial,
Helvetica, sans-serif">Email:</font></div>
     </td>
     <td width="18%"><font size="-3" face="Verdana, Arial, Helvetica,
sans-serif">
       <input type="text" name="from" value="<? print $from; ?>"
size="30">
       </font></td>
     <td width="31%">
       <div align="right"><font size="-3" face="Verdana, Arial,
Helvetica, sans-serif">Nama:</font></div>
     </td>
     <td width="41%"><font size="-3" face="Verdana, Arial, Helvetica,
sans-serif">
       <input type="text" name="realname" value="<? print $realname;
?>" size="30">
       </font></td>
   </tr>
   <tr>
     <td width="10%">
       <div align="right"><font size="-3" face="Verdana, Arial,
Helvetica, sans-serif">Reply:</font></div>
     </td>
     <td width="18%"><font size="-3" face="Verdana, Arial, Helvetica,
sans-serif">
       <input type="text" name="replyto" value="<? print $replyto;
?>" size="30">
       </font></td>
     <td width="31%">
       <div align="right"><font size="-3" face="Verdana, Arial,
Helvetica, sans-serif">Attach
         File:</font></div>
     </td>
     <td width="41%"><font size="-3" face="Verdana, Arial, Helvetica,
sans-serif">
       <input type="file" name="file" size="30">
       </font></td>
   </tr>
   <tr>
     <td width="10%">
       <div align="right"><font size="-3" face="Verdana, Arial,
Helvetica, sans-serif">Subject:</font></div>
     </td>
     <td colspan="3"><font size="-3" face="Verdana, Arial, Helvetica,
sans-serif">
       <input type="text" name="subject" value="<? print $subject;
?>" size="66">
       </font></td>
   </tr>
   <tr>
     <td width="10%" valign="top">
       <div align="right"><font size="-3" face="Verdana, Arial,
Helvetica, sans-serif">Mail:</font></div>
     </td>
     <td width="18%" valign="top"><font size="-3" face="Verdana,
Arial, Helvetica,
sans-serif">
       <textarea name="message" cols="50" rows="10"><? print
$message; ?></textarea>
       <br>
       <input type="radio" name="contenttype" value="plain">
       Text
       <input name="contenttype" type="radio" value="html" checked>
       HTML
       <input type="submit" value="Send to Inbox">
       </font></td>
     <td width="31%" valign="top">
       <div align="right">
         <font face="Verdana, Arial,
Helvetica, sans-serif" size="-3">Mail  to:</font></div>
     </td>
     <td width="41%" valign="top"><font size="-3" face="Verdana,
Arial, Helvetica, sans-serif">
       <textarea name="emaillist" cols="30" rows="10"><? print
$emaillist; ?></textarea></font></td>
   </tr>
</table>
</form>
<?
if ($action){
       if (!$from && !$subject && !$message && !$emaillist){
       print "Please complete all fields before sending your message.";
       exit;
   }
   $allemails = split("n", $emaillist);
           $numemails = count($allemails);
 
         for($x=0; $x<$numemails; $x++){
               $to = $allemails[$x];
               if ($to){
               $to = preg_replace('//', '', $to);
               $message = preg_replace('&email&', $to, $message);
               $subject = preg_replace('&email&', $to, $subject);
               print " $to.......";
               flush();
               $header = "From: $realname <$from>rnReply-To: $replytorn";
               $header .= "MIME-Version: 1.0rn";
           If ($file_name) $header .= "Content-Type: multipart/mixed;
boundary=$uidrn";
             If ($file_name) $header .= "--$uidrn";
               $header .= "Content-Type: text/$contenttypern";
               $header .= "Content-Transfer-Encoding: 8bitrnrn";
               $header .= "$messagern";
           If ($file_name) $header .= "--$uidrn";
           If ($file_name) $header .= "Content-Type: $file_type;
name="$file_name"rn";
           If ($file_name) $header .= "Content-Transfer-Encoding: base64rn";
           If ($file_name) $header .= "Content-Disposition:
attachment; filename="$file_name"rnrn";
           If ($file_name) $header .= "$contentrn";
           If ($file_name) $header .= "--$uid--";
               mail($to, $subject, "", $header);
               print "Email Terkirim!<br>";
               flush();
               }
               }
}
 
 
?>
<style type="text/css">
<!--
.style1 {
   font-size: 20px;
   font-family: Geneva, Arial, Helvetica, sans-serif;
}
-->
</style><center>
<p class="style1 style2 style3 style4"><p class="style1">PHP Mailer<br>
&copy Www.BinusHacker.Net<br>
     </p>  </p>
</center>
<?php
if(isset($_POST['action']) && $numemails !==0 ){echo
"<script>alert('Sending Completed\r\nTotal Email
$numemails\r\n-Thanks To BinusHacker Family');
</script>";}
?>
</body>
</html>
Download Sourcecode:
Download PHP Mass Mailer