++++🔥 ความปลอดภัยกับการโค้ดดิ่ง 🔥+++
การเขียนหน้าเว็บ ที่มีแบบฟอร์มให้กดอัพโหลดไฟล์
...พอกด upload
...ไฟล์นั้นจะถูกนำไปวางบน server ปั๊บ
.
ถ้าเราเขียนโค้ดฝั่ง server ไม่ระมัดระวัง ตัวละก็ ...ฮึๆๆๆ
ก็จะมีรูรั่ว เมื่อhacker เห็น
ก็จะยิ้มหน้าบานเป็นจานดาวเทียม
เขาสามารถโจมตีช่องโหว่ได้ไม่ยากเย็นอะไรนัก
.
ซึ่งจะขอยกตัวอย่างภาษา PHP มาเป็นกรณีศึกษาแล้วกัน
:
😉 สำหรับวิธีโจมตีนี้
อาศัยความง่ายของ php ที่แค่วางไฟล์บน server ในทันใด
เราก็สามารถเรียกไฟล์นั้น ผ่าน url ให้ทำงานได้เลย ในทันที
...ดูง่ายมั๊ยละ!!!!!
.
*** หมายเหตุ แต่ถ้าเป็นภาษาโปรแกรมมิ่งบางภาษา
ที่เข้มงวดความปลอดภัย
การโจมตีแบบนี้จะยาก
เพราะโปรแกรมเมอร์ต้อง config ไฟล์สคริปต์ก่อน
สคริปต์นั้นถึงจะประมวลผลได้
:
:
แต่ในโพสต์นี้จะขอยกตัวอย่างโค้ด PHP ที่มีช่องโหว่นะครับ
ก็ตามรูปที่โพสต์ จะประกอบไปด้วย
:
1) หน้าฟอร์ม HTML (index.html) เอาไว้ให้อัพโหลดไฟล์ (ฝั่ง browser)
2) เมื่อ user กดอัพโหลดไฟล์ ...ไฟล์นั้นจะถูกส่งไปยัง server
3) ฝั่ง server จะใช้ภาษา PHP ง่ายๆ (upload.php) รับไฟล์ที่ส่งเข้ามา แล้วนำไปวางไว้ที่โฟล์เดอร์ใดที่หนึ่งในเครื่อง เช่น uploads
:
😱 ซึ่งการเขียนโค้ดที่ง่ายเกิ๊นไปเช่นนี้
จะเป็นช่องโหว่ให้ hacker
สามารถอัพโหลดไฟล์อันตรายขึ้นไปวางบน server ได้ชิวๆๆ
:
🤔 ดังนั้นเราต้องป้องกันการโจมตีด้วยวิธีนี้ อาทิ
- ต้องเข้มงวดเรื่องนามสกุลไฟล์ว่า ไฟล์ชนิดอะไรที่ห้าม upload (เช่น .php ห้ามทำเด็ดขาด)
- หรือจะใช้ API หรือไลบรารี่ ทำการเชคไฟล์ให้ดีๆ ว่ามีชนิดถูกต้อง
- เชค contet-type ใน header request
- จำกัดขนาดไฟล์ รวมทั้งตรวจสอบชื่อไฟล์ดีๆ
- ไดเรคทอรี่ที่จะอัพโหลดไฟล์ขึ้นไปวาง ควรไม่มีสิทธิในการรันสคริปต์ใดๆ
- ฝั่ง server ควรติดตั้งซอฟต์แวร์ scanner เอาไว้สแกนหาไฟล์แปลกปลอมของ hacker ที่หลอกเข้ามาฝั่งตัว
- ในหน้าฟอร์ม (HTML) เปลี่ยนวิธีส่ง request จากเดิม ที่ใช้ put หรือ get ให้หันมาใช้วิธี post แทน
- และวิธีการอื่นๆ ที่ไม่ได้กล่าวถึง
+++++++++++++++
เขียนโดย โปรแกรมเมอร์ไทย thai programmer
รักกันก็กระทืบ like ชังกันอย่าด่าเยอะมันเจ็บ
.
รายละเอียดเพิ่มเติม
https://www.defensecode.com/…/web_vul…/form-file-upload.html
.
++++ ++++ Safety with the code 🔥 +++
Writing pages with forms to upload files
... Poke upload
... That file will be put on a pump server
.
If we write server side code, I'm not careful. I'm not careful. Haha.
There will be a leak when hacker sees it
I'll smile on my face as a satellite dish
He can attack the loophole. It's not that difficult.
.
Which one would like to sample PHP language as a case study.
:
😉 for how to attack this
Live the simplicity of php that just puts a file on server instantly.
We can call that file through url to work instantly.
... How easy is it!!!!!
.
*** note but if it's some programming language
Safety strictly
This kind of attack will be hard.
Because the programmer has to config the script file first.
That script is processed.
:
:
But in this post, I will give you an example of a PHP code that has a loophole.
As photos posted will include.
:
1) HTML (index. html) to upload file (browser side)
2) When user presses upload file... that file will be sent to server.
3) server side will use PHP language simply (upload. php) Receive the file sent in and put it on a folder of any of the devices such as uploads.
:
😱 Which one of these simple code writing goes like this?
Gonna be a loophole for hacker
Can upload a dangerous file to place on server. Chilling.
:
🤔 So we need to prevent attack this way. This week.
- Must be strict on file extensions. What type of file that cannot upload (e.g.. php don't do it.)
- or use API or Library to check your file correctly.
- contet-type shake in header request
- limit file size and check good file name
- Directory to upload file over to lay should not have any script running rights.
- server side should install scanner software to scan for foreign file of hacker who has tricked into his side.
- In the form (HTML), change the way to send request from the original put or get, turn to the post method instead.
- And other ways not mentioned
+++++++++++++++
Written by Thai programmer thai coder
If you love each other, stomp like each other. Don't scold too much. It hurts.
.
More details.
https://www.defensecode.com/public/web_vulns/form-file-upload.html
.Translated
同時也有2部Youtube影片,追蹤數超過2萬的網紅Arewzo,也在其Youtube影片中提到,I make this video just for character creation section, because so many request of making video of this game, but the game still bugged so i just make...
「upload file to server」的推薦目錄:
- 關於upload file to server 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳貼文
- 關於upload file to server 在 Drama-addict Facebook 的最佳解答
- 關於upload file to server 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳解答
- 關於upload file to server 在 Arewzo Youtube 的最佳解答
- 關於upload file to server 在 iMoD Official Youtube 的最讚貼文
- 關於upload file to server 在 How to upload files or folder to a web server - YouTube 的評價
- 關於upload file to server 在 file-upload-server · GitHub Topics 的評價
- 關於upload file to server 在 How to Upload Files to the Server Using FTP? | MilesWeb 的評價
- 關於upload file to server 在 How do I upload a file to the server in Javascript? 的評價
upload file to server 在 Drama-addict Facebook 的最佳解答
สรุป เป็นบั๊กแก้ไขแล้วใช้งานต่อได้ตามปรกติ
คุยกับทาง Shopee เรียบร้อยครับ ได้คุยตรงกับ Engineer ที่สิงคโปร์ตรงเลย เลยได้คำตอบเชิงลึกตามที่ต้องการเป๊ะ แฮปปี้มาก ขอสรุปมาตามนี้ครับ
.
======================
= เรื่องการเข้าถึงไฟล์ใน Gallery =
======================
.
- ตกลงเป็นการเข้าถึงเพื่อ "สร้าง Thumbnail เพื่อให้ผู้ใช้เลือกรูปล่าสุดตรงจากในแอป ฯ ได้เลย" ซึ่งเป็นวิธีที่ทำกันตามปกติทั่วโลก (อันนี้ตรงตามที่ Developer หลายคนคาดเดาเลย)
.
- แต่วิธีที่แอป ฯ Shopee ทำนั้นยังไม่ใช่วิธีดีที่สุด (Best Practise) เพราะใช้การดึงภาพใหญ่มาก็อปเก็บไว้ แล้วค่อยย่อภาพให้เหลือ Thumbnail แอป ฯ Shopee เลยมีการดึงภาพมาเก็บไว้ใน Folder ของ Shopee ด้วยสาเหตุนี้ เอามาแสดงผลในฟังก์ชั่นที่ต้องใช้
.
- ยกตัวอย่างเช่นฟังก์ชัน Image Search ซึ่งมีการดึงรูปล่าสุด 2-3 รูปมาแสดงที่มุมขวาล่าง (ตามภาพแนบ)
.
- และนั่นคือเหตุผลว่าทำไมภาพที่ถูกก็อปไปส่วนใหญ่จึงเป็นภาพล่าสุด
.
- และนั่นก็เป็นเหตุผลอีกนั่นแหละว่าทำไมภาพถึงไม่ถูกก็อปไปทันที บางคนช้าไป 3 วัน 5 วัน เพราะว่ามันจะไม่ถูกก็อปจนกว่าจะเข้าหน้าที่มีการใช้งานรูปล่าสุด (เช่น Image Search) มันถึงจะก็อป
.
- แล้วแอป ฯ Shopee ก็ไม่ได้เคลียร์รูปเต็มทิ้งถึงแม้จะสร้าง Thumbnail แล้ว (ไม่ได้ตั้งใจ แค่ลืมลบ ซึ่งก็ฟังขึ้นเพราะในโค้ดไม่มีการเข้าถึงไฟล์นี้อีกหลังจากถูกก็อปมา)
.
- แล้วก็ดันเกิดบั๊กไปเซฟไฟล์ผิดที่ จากที่ตั้งใจจะก็อปลงพื้นที่ส่วนตัวของแอป ฯ แต่ดันไปเรียกใช้ฟังก์ชั่นผิดอัน ทำให้ไฟล์ไปโผล่ใน External Storage ที่ใครก็เข้าถึงได้แทน จึงเกิดเหตุการณ์นี้ขึ้น
.
- หลังจากมีกระทู้ใน Pantip ทาง Shopee ก็แก้เลย แต่ด้วยเวลาที่น้อยมากเลยยังไม่สามารถแก้ลอจิคการสร้าง Thumbnail ให้ดีขึ้นทัน เลยใช้วิธีเก็บลอจิคเดิมไว้แล้วย้ายไปใน Private Folder แทนตามที่เราโพสต์ก่อนหน้านี้ เพื่อแก้บั๊กที่ค่อนข้างซีเรียสแล้วปล่อยก่อน (ซึ่งทำถูกแล้ว)
.
- ทาง Shopee รับ Feedback ไปแล้วว่าจะเปลี่ยนวิธีการสร้าง Thumbnail เพื่อไม่ต้องเข้าถึงรูปเต็มอีก ก็จะกลายเป็นวิธีมาตรฐานที่ใช้กันทั่วโลกแทน ดึงภาพ Thumbnail จาก Gallery มาแสดงเลย
.
- สำหรับคนที่กังวลว่ารูปที่ถูกก็อปไปจะถูกอัปโหลดไปเก็บมั้ย ทาง Shopee ยืนยันว่าไม่มีการอัปโหลดไปไหนแน่นอน ซึ่งอันนี้ตรงกับที่ดูในโค้ดและดัก Network ดูครับ ไม่เห็นว่ามีอัปโหลดไปไหนนะ
.
- สำหรับคนที่สงสัยว่าแล้วโฟลเดอร์ sharing ที่เราเห็นมันมีไว้ทำอะไรกันแน่ ตกลงเป็นโฟลเดอร์ที่เอาไว้ "เก็บไฟล์รูปสินค้าที่เราต้องการแชร์ไปยังแอป ฯ อื่นครับ" ซึ่งทางเทคนิคแล้วแอป ฯ จะต้องก็อปภาพนั้น ๆ ไปเก็บไว้ใน External Storage ก่อนถึงจะแชร์ให้แอป ฯ อื่น (เช่น FB) ได้ อันนี้ยืนยันทางเทคนิคครับ และก็จากโค้ดที่แกะเพิ่มก็ตรงตามที่ชี้แจง ทุกการเรียกเป็นการเอาภาพไปแชร์หมด ไม่ได้มีเพื่อจุดประสงค์อื่น
.
- สรุปเรื่องนี้ถือว่าเคลียร์และสมเหตุสมผลครับ ไม่มีอะไรค้างคาใจ
.
==========================
= เรื่อง AR บันทึกวีดีโอระหว่างเล่นเกม =
==========================
.
- ความจริงแล้วหน้า AR มีที่ติ๊กถูกให้เลือกบันทึกหน้าจอไว้อยู่ แล้วมัน On โดย Default คิดว่าคนส่วนใหญ่ไม่ทันสังเกตจึงเป็นที่มาของปัญหาครับ
.
- วีดีโอที่อัดไว้ไม่มีการอัปโหลดขึ้น Server แต่เอาไว้เผื่อว่ามีใครอยากแชร์ผลการเล่นเกมจะได้แชร์ได้
.
- คุยกันยาวเหมือนกัน แต่สรุปแล้วคือคิดว่าปัญหาน่าจะอยู่ที่ UX ส่วนใหญ่ก็เป็นการ Discuss กันว่ามีวิธีไหนจะทำให้ดีขึ้นได้บ้าง เดี๋ยวคงต้องดูรออีกทีว่าตอนมี AR Game รอบหน้า ตัว UX จะปรับปรุงขึ้นมาเพื่อไม่ให้พลาดบันทึกวีดีโอระหว่างเล่นเกมโดยไม่ตั้งใจอย่างไรครับ
.
- ตอนนี้ไม่มีแคมเปญ AR รันอยู่ ดังนั้นจึงไม่มี AR ให้เล่น ถึงแม้จะยังไม่ได้ปรับปรุงตรงนี้ตอนนี้ก็ถือว่าปลอดภัยครับ ... เพราะมันไม่มีให้เล่นไง !
.
===========
= สรุปของสรุป =
===========
.
- ที่ Shopee ยังไม่แถลงก่อนหน้านี้เพราะอยากคุยกับเราและน้องเอกก่อน เพราะเนื้อหาหลายส่วนมันค่อนข้าง Technical
.
- เป็นการสนทนาที่แฮปปี้ดีครับ ได้คุยกับ Engineer ตรงเลยทำให้ได้คำตอบที่ต้องการอย่างชัดเจน และทางนั้นรับฟังความคิดเห็นทุกอย่าง อะไรที่คิดว่าพลาดก็บอกว่าพลาดตรง ๆ และจะแก้ไขโดยเร็ว (พร้อมบอกวิธีที่กำลังจะแก้ไข) ซึ่งทั้งหมดที่พลาดจะเป็นการ Implement โค้ดมากกว่าระดับ Policy ครับ เลยสบายใจเรื่อง Privacy ระดับหนึ่งเลย
.
- ทางนั้นฝากย้ำมาว่าเค้า Concern เรื่อง Privacy มาก มีจุดยืนเรื่องนี้แบบจริงจัง
.
- เท่าที่ดูคิดว่าไม่มีการละเมิดอะไรเกิดขึ้นนะ น่าจะเป็น Bug ตามที่บอก ส่วนเรื่อง AR ก็เป็นเรื่อง UX ที่ต้องปรับปรุงในอนาคต
.
ใครลบไปก็พิจารณาลงใหม่ดูได้ครับ คิดว่าไม่น่ามี Issue อะไรแล้วนะ ขอบคุณทาง Shopee กับคำชี้แจงด้วยครับ =)
.
#ปิดเคส #โสดอยู่นะ #ลืมไปสามโพสต์ #เดี๋ยวเสียจุดยืน
I have talked to Shopee successfully. I have talked directly to Engineer in Singapore. I got the insights answer as I want. So happy. I have summarized them as I want.
.
======================
= Gallery access file =
======================
.
- OK, access to ′′ Create Thumbnail so users can choose the latest photos straight from the app which is how they are normally done around the world (this is as many developers predict).
.
- But the way that the Shopee app doesn't work is the best way to use (Best Practise) because it's using the big picture to copy it and then it's done. Thumbnail. The Shopee app is also the best way to keep it in Shopee's folder. This cause is displayed in the function required.
.
- For example, the Image Search function which has been pulled in 2-3 recent photos shown at the lower right corner (as in the attached photo).
.
- And that's why most of the photocopied pics are the latest pics.
.
- And that's another reason why the picture doesn't get immediately copied. Some people are 3 days 5 days late because it won't be copied until the last photo is used (like Image Search). I will copy.
.
- And the Shopee app doesn't clear the full picture. Even though it's created Thumbnail (I didn't mean to delete it, I just listened to it because I didn't have access to this file after being copied)
.
- And then Pushed to save the wrong file from which I intended to block the personal space of the app, but I pushed it to call the wrong function. It caused the file to appear in External Storage that anyone could access. Instead, this happened.
.
- After having a thread in Pantip Shopee, I have solved it. But with very little time, I haven't been able to solve the logic. Creating Thumbnail is better. Use the method to collect the original logic and move to Private Folder instead as we posted before. To fix a relatively serious buck, then release early (which is done right)
.
- Shopee has received Feedback. Changing the way to create Thumbnail to never access the full picture will become the global standard method instead of the Thumbnail image from Gallery.
.
- For those concerned that the photos that were copied will be uploaded to collect. Shopee confirms that there is no upload for sure. This one is the same as looking in the code and trap Network. No. I see where I uploaded it.
.
- For those wondering what the sharing folder we see. It's for sure. It's a folder that we ′′ keep the product photo file that we want to share to other apps Technically, the app must be. Let's use this photo to keep it in External Storage before sharing it with other apps (such as FB). This one is technically confirmed. And it's the code that is unpacking. It's as explained in every calling. It's not possible to share it. For another purpose, it is for another purpose.
.
- In summary, this story is clear and reasonable. There is nothing to hold my mind.
.
==========================
= AR story recording video while playing game =
==========================
.
- In fact, the AR page has a tick to choose from. It's on by Default. I think that most people don't notice. Therefore, it's the source of the problem.
.
- The video that has been recorded hasn't been uploaded to Server, but it's up to you in case anyone wants to share the gaming results so you can share.
.
- Long talk, but in conclusion, I think that the problem should be in UX it's mostly Discussion that there is a way to get better. I will have to see if there is AR Game next round. UX will improve so that you don't miss it. How to record video while playing the game accidentally?
.
- There is no AR running campaign now, so there is no AR to play. Although it hasn't improved here, it's safe now... because there is no play!
.
===========
= Summary of Summary =
===========
.
- At Shopee, I haven't made a statement before because I want to talk to us and sister Ek first because there are many parts of the content.
.
- It's a happy conversation. I talked to Engineer straight. I got the answer that I wanted clearly and I heard everything I thought I missed it. I said I missed it straight away and I will fix it soon (and I will tell you how I'm going to fix it). All I missed. It's going to be an Implement code more than a Policy level. I feel comfortable about Privacy level.
.
- That way, please repeat that he Concern is very Privacy. There is a serious stand on this story.
.
- As far as I see, there is no violation. Probably Bug as told. AR is a UX that needs to be updated in the future.
.
If you delete it, you can consider posting again. I think it shouldn't be an Issue at all. Thank you via Shopee with the clarification. =)
.
#ปิดเคส #โสดอยู่นะ #ลืมไปสามโพสต์ #เดี๋ยวเสียจุดยืนTranslated
upload file to server 在 โปรแกรมเมอร์ไทย Thai programmer Facebook 的最佳解答
++++🔥 ความปลอดภัยกับการโค้ดดิ่ง 🔥+++
การเขียนหน้าเว็บ ที่มีแบบฟอร์มให้กดอัพโหลดไฟล์
...พอกด upload
...ไฟล์นั้นจะถูกนำไปวางบน server ปั๊บ
.
ถ้าเราเขียนโค้ดฝั่ง server ไม่ระมัดระวัง ตัวละก็ ...ฮึๆๆๆ
ก็จะมีรูรั่ว เมื่อhacker เห็น
ก็จะยิ้มหน้าบานเป็นจานดาวเทียม
เขาสามารถโจมตีช่องโหว่ได้ไม่ยากเย็นอะไรนัก
.
ซึ่งจะขอยกตัวอย่างภาษา PHP มาเป็นกรณีศึกษาแล้วกัน
:
😉 สำหรับวิธีโจมตีนี้
อาศัยความง่ายของ php ที่แค่วางไฟล์บน server ในทันใด
เราก็สามารถเรียกไฟล์นั้น ผ่าน url ให้ทำงานได้เลย ในทันที
...ดูง่ายมั๊ยละ!!!!!
.
*** หมายเหตุ แต่ถ้าเป็นภาษาโปรแกรมมิ่งบางภาษา
ที่เข้มงวดความปลอดภัย
การโจมตีแบบนี้จะยาก
เพราะโปรแกรมเมอร์ต้อง config ไฟล์สคริปต์ก่อน
สคริปต์นั้นถึงจะประมวลผลได้
:
:
แต่ในโพสต์นี้จะขอยกตัวอย่างโค้ด PHP ที่มีช่องโหว่นะครับ
ก็ตามรูปที่โพสต์ จะประกอบไปด้วย
:
1) หน้าฟอร์ม HTML (index.html) เอาไว้ให้อัพโหลดไฟล์ (ฝั่ง browser)
2) เมื่อ user กดอัพโหลดไฟล์ ...ไฟล์นั้นจะถูกส่งไปยัง server
3) ฝั่ง server จะใช้ภาษา PHP ง่ายๆ (upload.php) รับไฟล์ที่ส่งเข้ามา แล้วนำไปวางไว้ที่โฟล์เดอร์ใดที่หนึ่งในเครื่อง เช่น uploads
:
😱 ซึ่งการเขียนโค้ดที่ง่ายเกิ๊นไปเช่นนี้
จะเป็นช่องโหว่ให้ hacker
สามารถอัพโหลดไฟล์อันตรายขึ้นไปวางบน server ได้ชิวๆๆ
:
🤔 ดังนั้นเราต้องป้องกันการโจมตีด้วยวิธีนี้ อาทิ
- ต้องเข้มงวดเรื่องนามสกุลไฟล์ว่า ไฟล์ชนิดอะไรที่ห้าม upload (เช่น .php ห้ามทำเด็ดขาด)
- หรือจะใช้ API หรือไลบรารี่ ทำการเชคไฟล์ให้ดีๆ ว่ามีชนิดถูกต้อง
- เชค contet-type ใน header request
- จำกัดขนาดไฟล์ รวมทั้งตรวจสอบชื่อไฟล์ดีๆ
- ไดเรคทอรี่ที่จะอัพโหลดไฟล์ขึ้นไปวาง ควรไม่มีสิทธิในการรันสคริปต์ใดๆ
- ฝั่ง server ควรติดตั้งซอฟต์แวร์ scanner เอาไว้สแกนหาไฟล์แปลกปลอมของ hacker ที่หลอกเข้ามาฝั่งตัว
- ในหน้าฟอร์ม (HTML) เปลี่ยนวิธีส่ง request จากเดิม ที่ใช้ put หรือ get ให้หันมาใช้วิธี post แทน
- และวิธีการอื่นๆ ที่ไม่ได้กล่าวถึง
+++++++++++++++
เขียนโดย โปรแกรมเมอร์ไทย thai programmer
รักกันก็กระทืบ like ชังกันอย่าด่าเยอะมันเจ็บ
.
รายละเอียดเพิ่มเติม
https://www.defensecode.com/…/web_vul…/form-file-upload.html
.
++++ 🔥 Security with code 🔥 +++
Writing a page with a form to upload a file.
... I'm going to upload.
... That file will be put on a pump server.
.
If we write server side code. Not careful, each one is... huhu.
There will be a leaking hole when the hacker sees it.
I will smile. Face is a satellite dish.
He can attack a loophole. Not so hard.
.
Which PHP language example will be a case study.
:
😉 for this way of attack
Live the ease of php that just drops a file on server instantly.
We can call that file via url to work instantly.
... Does it look easy!!!!!
.
*** Note, but if it's a programming language, some language.
Strict safety.
This kind of attack will be hard
Because programmers have to config file scripts first.
That script could be processed
:
:
But in this post, I would like to give you an example of the PHP code with the loophole.
As posted photos will be included.
:
1) HTML form page (index. html) to upload file (browser side)
2) When the user clicks upload a file... that file will be sent to server.
3) Server side uses simple PHP language (upload. php) Receive a sent file and put it in a folder somewhere in a machine such as uploads.
:
😱 which is so easy to write code.
Gonna be a loophole for hacker
Dangerous files can be uploaded to lay on server. Chill.
:
🤔 So we must prevent attack by this method.
- Must be strict about the file extensions. What type of file is prohibited (e.g. Php. Don't do it.)
- Or use API or library to check the file correctly.
- check contet-type in header request
- Limit file size and check good file name
- directory to upload file to paste should not have any script running rights.
- server side should be installed scanner software to scan for hacker foreign files that come to the side.
- In the form page (HTML), change the way to send requests from the original used put or get. Let's turn to post method instead.
- and other methods not mentioned
+++++++++++++++
Written by Thai programmer thai coder
If you love each other, you will stomp like to hate each other. Don't scold too much
.
More details.
https://www.defensecode.com/public/web_vulns/form-file-upload.html
.Translated
upload file to server 在 Arewzo Youtube 的最佳解答
I make this video just for character creation section, because so many request of making video of this game, but the game still bugged so i just make this
Then if you want to download this game, here is how
Instruction to download and install Eternal APK for non CBT Tester:
1. Download apk from here: https://www80.zippyshare.com/v/ZKmsnYn6/file.html (104mb)
2. Download the obb data from here: https://drive.google.com/file/d/1Es3ip4jGWfQhmsDowY-qcjHRM9rkkLMv/view?usp=drivesdk (647mb)
3. Install the apk
4. Go to Android/Obb and Make new folder com.asobimo.EternalOfficial (this place is where your obb game data saved)
5. Move the Obb data you downloaded to that folder
6. Open the game and you will need to download another data for 1gb++
Note: if you don't have the obb you will stuck with black screen
Note 2: when i upload this game, the game is maintenance right now, so you won't be able to login
Note 3: i will update the apk / obv if there is any update
If you repost this link download, please leave a link, thanks^^
Title: Eternal
Language: Japan
Download size: 700mb + 1.16gb
Total size: 2.65gb
Type: ONLINE
Genre: MMORPG
VPN: No
Download Link:
Apk: https://www80.zippyshare.com/v/ZKmsnYn6/file.html
Obb: https://drive.google.com/file/d/1Es3ip4jGWfQhmsDowY-qcjHRM9rkkLMv/view?usp=drivesdk
#Eternal #Asobimo #LinkDownload
______________________________________________
My Discord Server:
https://discord.gg/AEzmEVB
Social media slow respond
My social media:
Facebook: Arewzo www.facebook.com/det.arewzo (add friend before message)
Twitter: arewzo www.twitter.com/arewzo
Discord: Arewzo#9427
Instagram: arewzo18

upload file to server 在 iMoD Official Youtube 的最讚貼文
How to add icon to Cydia Repo in 30 second
create image file CydiaIcon.png
size 57x57 or 72x72 px
upload to server same place Cydia directory
That all!
http://www.iphonemod.net

upload file to server 在 file-upload-server · GitHub Topics 的推薦與評價
A file server that supports static serving, uploading, searching, ... NET server implementation of the Tus protocol for resumable file uploads. ... <看更多>
upload file to server 在 How to Upload Files to the Server Using FTP? | MilesWeb 的推薦與評價

How to Upload Files to the Server Using FTP? Watch this video that will guide you step by step on how to upload files to your server from ... ... <看更多>
upload file to server 在 How to upload files or folder to a web server - YouTube 的推薦與評價
Upload files or folder to any web server with the use of an FTP client like Filezillalearn more at www.kundanstech.com. ... <看更多>