loic17
loic17

Reputation: 787

Is it possible to upload a file to a website, only by modifying the HTML and CSS code?

I'm trying to upload a file to a website, so I can download it later from another location. Is there a way to do this solely by modifying the HTML/CSS code of the website?

Upvotes: 4

Views: 262

Answers (3)

user4237179
user4237179

Reputation:

html and css are markup language or language that render/format the website depending on the designers wishes, that being said, it is possible for anyone to modify the two for any website as one wishes hence for security purposes i dont think its possible to use them only to upload a a file to a server, u will need a backend scripting language to do that such as PHP or ASP among others

Upvotes: 0

ItsGeorge
ItsGeorge

Reputation: 2201

Yes. You just need to modify the HTML/CSS code of the website.

Upvotes: 5

Rob
Rob

Reputation: 15160

No. Neither HTML nor CSS are programming languages (meaning they allow you to interact with the server and its files) and, if it were allowed, anyone could upload files to a site's server.

Upvotes: 7

Related Questions