Hey all. I ran over a post by iBotPeaches on the invisionpower forums and decided i would ask here.. My buddy has IPB 3.4.5 and he has had his site defaced multiple times. I was wondering what i could do with the experience i have or just plugins. So what i am asking is if there are plugins, witch ones should I get? If there are no such thing as plugins, what can i do to improve security and prevent Defacement? Thanks in advance - Loveezz, Scottss (aka Yoda302055)
Hi guys i have been programming for a few years now... I still haven't been able to work with different languages. But now that i am actually driven. I would love it if someone could provide an example and explain how an API works. i have looked over the internet and stuff and i still don't understand how they work. Anyways, My goal for this to work with my Login application. Comparing what the user has entered to the Data Base. Any help would be appreciated. Thanks in advance everybody .
Oh i see what you mean... I guess im gonna have to learn some PHP! then learn to understand xml. This is what i was wanting to do in the first place.. Thanks peachs... If i ever want to go to someone with knowledge it will be you!
Do you happen to know how to do that? cause i was wanting to.. But i just ended up doing this..All i really need it to know the name and i can google it for hours and hours
Hi guys! I'm making a new program and i was kind of stuck on what to add to this... Soo im posting here!
what would you add to this page? (DatabaseEditor)
Currently posted on: ClownModding.com, iBotModz.net and TheTechGame.com.
Xbox LIVE Notification of Temporary Suspension: Inappropriate content in your profile [ DO NOT REPLY to this email address. It is not monitored. ] This email is to notify you that your Xbox LIVE account privileges have been temporarily suspended due to inappropriate content in the profile for your gamertag. The inappropriate content was discovered in the Motto, Bio, Location, Name and/or Personal Picture. The following content for the gamertag associated with this Windows Live ID was brought to our attention and was determined to have violated the Code of Conduct and/or Terms of Use: Motto I Kill Jugalo`s Your profile was brought to the attention of the LIVE Enforcement Team through complaints filed by other Xbox LIVE users or in the course of our operation of the service. The LIVE Enforcement Team has reviewed the complaints and other evidence regarding this content and determined it violates the Xbox LIVE Terms of Use and/or Code of Conduct. Because this content is in violation, the LIVE Enforcement Team has deleted the content and issued a temporary suspension. You have been sent a message in the Xbox LIVE Dashboard notifying you when your suspension will end. During this suspension, you will not be able to log into Xbox LIVE. Your Xbox LIVE privileges will be automatically reinstated at the end of your suspension period. Customer Support is not able to modify or provide any further details about your suspension. Additionally, the duration of your suspension is subject to change without prior notice by the LIVE Enforcement Team if we discover additional evidence of violations. Microsoft expects that all customers abide by the Code of Conduct. The Code of Conduct provides guidelines for appropriate behavior while using the service. Your failure to abide by the Code of Conduct in the future may result in, among other things, longer suspension periods or cancellation of your account. You can view the Xbox LIVE Code of Conduct from the Xbox LIVE Dashboard under Xbox LIVE Policies in Account Management, or by visiting http://www.xbox.com/live/codeofconduct.htm.You can view the Xbox LIVE Terms of Use by visiting http://www.xbox.com/live/termsofuse.htm. Note: if you are not a user of Xbox LIVE, this suspension may have been enacted due to your activity in the Zune Social. You can view the Zune Social Code of Conduct by visiting http://www.zune.net/legal/codeOfConduct.htm. You can view the Zune Social Terms of Service by visiting http://www.zune.net/legal/termsofservice.htm. Thank you, LIVE Enforcement Team Thats What Really Grinds my Gears
Hey I found a file on xbox.com and was wondering if you could mod it and have a modded dash or something if you can just comment Link For Xbox.com Fourm Link
How Do You Auto update in vb 08? is it This?
Imports System.IO
Imports System.Net
Module Main
Public Sub Main()
Dim ExeFile As String ' the program that called the auto update
Dim RemoteUri As String ' the web location of the files
Dim Files() As String ' the list of files to be updated
Dim Key As String ' the key used by the program when called back
' to know that the program was launched by the
' Auto Update program
Dim CommandLine As String ' the command line passed to the original
' program if is the case
Dim myWebClient As New WebClient ' the web client
Try
' Get the parameters sent by the application
Dim param() As String = Split(Microsoft.VisualBasic.Command(), "|")
ExeFile = param(0)
RemoteUri = param(1)
' the files to be updated should be separeted by "?"
Files = Split(param(2), "?")
Key = param(3)
CommandLine = param(4)
Catch ex As Exception
' if the parameters wasn't right just terminate the program
' this will happen if the program wasn't called by the system
' to be updated
Exit Sub
End Try
Try
' Process each file
For i As Integer = 0 To Files.Length - 1
Try
' try to rename the current file before download the new one
' this is a good procedure since the file can be in use
File.Move(Application.StartupPath & "\" & Files(i), _
Application.StartupPath & "\" & _
Now.TimeOfDay.TotalMilliseconds & ".old")
Catch ex As Exception
End Try
' download the new version
myWebClient.DownloadFile(RemoteUri & Files(i), _
Application.StartupPath & "\" & Files(i))
Next
' Call back the system with the original command line
' with the key at the end
System.Diagnostics.Process.Start(ExeFile, CommandLine & Key)
' do some clean up - delete all .old files (if possible)
' in the current directory
' if some file stays it will be cleaned next time
Dim S As String = Dir(Application.StartupPath & "\*.old")
Do While S <> ""
Try
File.Delete(Application.StartupPath & "\" & S)
Catch ex As Exception
End Try
S = Dir()
Loop
Catch ex As Exception
' something went wrong...
MsgBox("There was a problem runing the Auto Update." & vbCr & _
"Please Contact Admin at MMG.com" & vbCr & ex.Message, _
MsgBoxStyle.Critical)
End Try
End Sub
End Module
Public Class Form4
Public Class AutoUpdate
Public Function AutoUpdate(ByRef CommandLine As String) As Boolean
Dim Key As String = "&**#@!" ' any unique sequence of characters
' the file with the update information
Dim sfile As String = "update.dat"
' the Assembly name
Dim AssemblyName As String = _
System.Reflection.Assembly.GetEntryAssembly.GetName.Name
' here you need to change the web address
Dim RemotePath As String = _
"http://MasterModdingGroupMMGD.weebly.com/"
' where are the files for a specific system
Dim RemoteUri As String = RemotePath & AssemblyName & "/"
' clean up the command line getting rid of the key
CommandLine = Replace(Microsoft.VisualBasic.Command(), Key, "")
' Verify if was called by the autoupdate
If InStr(Microsoft.VisualBasic.Command(), Key) > 0 Then
Try
' try to delete the AutoUpdate program,
' since it is not needed anymore
System.IO.File.Delete(Application.StartupPath & "\autoupdate.exe")
Catch ex As Exception
End Try
' return false means that no update is needed
Return False
Else
' was called by the user
Dim ret As Boolean = False ' Default - no update needed
Try
Dim myWebClient As New System.Net.WebClient 'the webclient
' Download the update info file to the memory,
' read and close the stream
Dim file As New System.IO.StreamReader( _
myWebClient.OpenRead(RemoteUri & sfile))
Dim Contents As String = file.ReadToEnd()
file.Close()
' if something was read
If Contents <> "" Then
' Break the contents
Dim x() As String = Split(Contents, "|")
' the first parameter is the version. if it's
' greater then the current version starts the
' update process
If x(0) > Application.ProductVersion Then
' assembly the parameter to be passed to the auto
' update program
' x(1) is the files that need to be
' updated separated by "?"
Dim arg As String = Application.ExecutablePath & "|" & _
RemoteUri & "|" & x(1) & "|" & Key & "|" & _
Microsoft.VisualBasic.Command()
' Download the auto update program to the application
' path, so you always have the last version runing
myWebClient.DownloadFile(RemotePath & "autoupdate.exe", _
Application.StartupPath & "\autoupdate.exe")
' Call the auto update program with all the parameters
System.Diagnostics.Process.Start( _
Application.StartupPath & "\autoupdate.exe", arg)
' return true - auto update in progress
ret = True
End If
End If
Catch ex As Exception
' if there is an error return true,
' what means that the application
' should be closed
ret = True
' something went wrong...
MsgBox("There was a problem runing the Auto Update." & vbCr & _
"Please Contact Admin:mastermoddinggroup.weebly.com" & vbCr & ex.Message, _
MsgBoxStyle.Critical)
End Try
Return ret
End If
End Function
End Class